ff-webpage/types/single/homepage.ts

13 lines
245 B
TypeScript
Raw Normal View History

2024-11-01 13:15:09 +00:00
import type Image from "../component/image";
export default interface Homepage {
id: number;
documentId: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
backdrop: Image;
content: Array<any>;
}