import { DirectusFolder } from "./folder.js"; import { DirectusUser } from "./user.js"; import { MergeCoreCollection } from "../types/schema.js"; //#region src/schema/file.d.ts type DirectusFile = MergeCoreCollection | string | null; uploaded_by: DirectusUser | string | null; uploaded_on: "datetime"; modified_by: DirectusUser | string | null; modified_on: "datetime"; charset: string | null; filesize: string | null; width: number | null; height: number | null; duration: number | null; embed: unknown | null; description: string | null; location: string | null; tags: string[] | null; metadata: Record | null; focal_point_x: number | null; focal_point_y: number | null; }>; //#endregion export { DirectusFile }; //# sourceMappingURL=file.d.ts.map