2025-01-18 10:30:46 +00:00
|
|
|
import type BaseFile from "../component/baseFile";
|
2024-11-02 11:47:07 +00:00
|
|
|
import type { ComponentTypes } from "../component/baseComponent";
|
2024-11-01 13:15:09 +00:00
|
|
|
|
|
|
|
export default interface Homepage {
|
|
|
|
id: number;
|
|
|
|
documentId: string;
|
|
|
|
createdAt: string;
|
|
|
|
updatedAt: string;
|
|
|
|
publishedAt: string;
|
|
|
|
locale: string;
|
2025-01-18 10:30:46 +00:00
|
|
|
backdrop: BaseFile;
|
2025-01-17 10:34:36 +00:00
|
|
|
hide_backdrop: boolean;
|
2024-11-02 11:47:07 +00:00
|
|
|
content: Array<ComponentTypes>;
|
2024-11-01 13:15:09 +00:00
|
|
|
}
|