ff-webpage/types/single/homepage.ts

15 lines
357 B
TypeScript
Raw Normal View History

2025-01-18 10:30:46 +00:00
import type BaseFile from "../component/baseFile";
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;
hide_backdrop: boolean;
content: Array<ComponentTypes>;
2024-11-01 13:15:09 +00:00
}