29 lines
546 B
TypeScript
29 lines
546 B
TypeScript
// Interface automatically generated by schemas-to-ts
|
|
|
|
export interface AboutUs {
|
|
title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonLabel?: string;
|
|
buttonLink?: string;
|
|
}
|
|
export interface AboutUs_Plain {
|
|
title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonLabel?: string;
|
|
buttonLink?: string;
|
|
}
|
|
|
|
export interface AboutUs_NoRelations {
|
|
title?: string;
|
|
header?: string;
|
|
description?: string;
|
|
content?: string;
|
|
buttonLabel?: string;
|
|
buttonLink?: string;
|
|
}
|
|
|