import { DirectusField } from "./field.js"; import { NestedPartial } from "../types/utils.js"; import { MergeCoreCollection } from "../types/schema.js"; //#region src/schema/collection.d.ts type DirectusCollection = { collection: string; meta: MergeCoreCollection; schema: ({ name: string; comment: string | null; } & Record) | null; fields?: NestedPartial>[]; }; type CollectionMetaTranslationType = { language: string; plural: string; singular: string; translation: string; }; //#endregion export { CollectionMetaTranslationType, DirectusCollection }; //# sourceMappingURL=collection.d.ts.map