import type BaseFile from "../component/baseFile";
import type { ComponentTypes } from "../component/baseComponent";

export default interface Homepage {
  id: number;
  documentId: string;
  createdAt: string;
  updatedAt: string;
  publishedAt: string;
  locale: string;
  backdrop: undefined | BaseFile;
  content: Array<ComponentTypes>;
}