13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
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[];
|
|
}
|