2024-11-02 11:47:07 +00:00
|
|
|
import type { ComponentTypes } from "../component/baseComponent";
|
|
|
|
import type SharedHero from "../component/sharedHero";
|
|
|
|
|
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;
|
2024-11-02 11:47:07 +00:00
|
|
|
hero: SharedHero;
|
|
|
|
content: Array<ComponentTypes>;
|
2024-11-01 13:15:09 +00:00
|
|
|
localizations: any[];
|
|
|
|
}
|