16 lines
389 B
TypeScript
16 lines
389 B
TypeScript
import type { ComponentTypes } from "../component/baseComponent";
|
|
import type ItemsHero from "../component/items/hero";
|
|
|
|
export default interface Page {
|
|
id: number;
|
|
documentId: string;
|
|
identifier: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
locale: string;
|
|
slug: string;
|
|
hero: ItemsHero;
|
|
content: Array<ComponentTypes>;
|
|
localizations: any[];
|
|
}
|