import { DirectusField } from "./field.cjs"; import { NestedPartial } from "../types/utils.cjs"; import { MergeCoreCollection } from "../types/schema.cjs"; //#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.cts.map