ff-webpage/types/single/homepage.ts

14 lines
357 B
TypeScript

import type BaseFile from "../component/baseFile";
import type { ComponentTypes } from "../component/baseComponent";
export default interface Homepage {
id: number;
documentId: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
backdrop: BaseFile;
hide_backdrop: boolean;
content: Array<ComponentTypes>;
}