13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
|
import type Image from "../component/image";
|
||
|
|
||
|
export default interface Homepage {
|
||
|
id: number;
|
||
|
documentId: string;
|
||
|
createdAt: string;
|
||
|
updatedAt: string;
|
||
|
publishedAt: string;
|
||
|
locale: string;
|
||
|
backdrop: Image;
|
||
|
content: Array<any>;
|
||
|
}
|