14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
import type BaseImage from "../component/baseImage";
|
|
import type { ComponentTypes } from "../component/baseComponent";
|
|
|
|
export default interface Homepage {
|
|
id: number;
|
|
documentId: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
locale: string;
|
|
backdrop: BaseImage;
|
|
hide_backdrop: boolean;
|
|
content: Array<ComponentTypes>;
|
|
}
|