ff-webpage/types/collection/page.ts

17 lines
389 B
TypeScript
Raw Normal View History

import type { ComponentTypes } from "../component/baseComponent";
2025-02-14 13:57:55 +01:00
import type ItemsHero from "../component/items/hero";
2024-11-01 14:15:09 +01:00
export default interface Page {
id: number;
documentId: string;
identifier: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
slug: string;
2025-02-14 13:57:55 +01:00
hero: ItemsHero;
content: Array<ComponentTypes>;
2024-11-01 14:15:09 +01:00
localizations: any[];
}