import { MergeCoreCollection } from "../types/schema.js"; //#region src/schema/relation.d.ts type DirectusRelation = { collection: string; field: string; related_collection: string; meta: MergeCoreCollection; schema: { column: string; constraint_name: string; foreign_key_column: string; foreign_key_schema: string; foreign_key_table: string; on_delete: string; on_update: string; table: string; }; }; //#endregion export { DirectusRelation }; //# sourceMappingURL=relation.d.ts.map