file download component

This commit is contained in:
Julian Krauser 2025-01-18 11:30:46 +01:00
parent 2189a3d33b
commit 9d81666a3c
14 changed files with 75 additions and 20 deletions

View file

@ -1,4 +1,4 @@
import type BaseImage from "../component/baseImage";
import type BaseFile from "../component/baseFile";
import type { ComponentTypes } from "../component/baseComponent";
export default interface Homepage {
@ -8,7 +8,7 @@ export default interface Homepage {
updatedAt: string;
publishedAt: string;
locale: string;
backdrop: BaseImage;
backdrop: BaseFile;
hide_backdrop: boolean;
content: Array<ComponentTypes>;
}