ff-webpage/types/collection/page.ts

14 lines
342 B
TypeScript
Raw Normal View History

2024-11-01 13:15:09 +00:00
export default interface Page {
id: number;
documentId: string;
identifier: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
slug: string;
Hero: { id: number; titel: string };
content: { __component: string; id: number; list: string; enable_detail: boolean }[];
localizations: any[];
}