import { DirectusRelation } from "../../../schema/relation.js"; import { RestCommand } from "../../types.js"; //#region src/rest/commands/delete/relations.d.ts /** * Delete an existing relation. * @param collection * @param field * @returns * @throws Will throw if collection is empty * @throws Will throw if field is empty */ declare const deleteRelation: (collection: DirectusRelation["collection"], field: DirectusRelation["field"]) => RestCommand; //#endregion export { deleteRelation }; //# sourceMappingURL=relations.d.ts.map