base structure and display
This commit is contained in:
parent
de049e9125
commit
9d96e3a6dc
22 changed files with 1210 additions and 15 deletions
13
types/collection/page.ts
Normal file
13
types/collection/page.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
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[];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue