Files
klz-cables.com/.pnpm-store/v10/files/80/3af372aa3d3999396f4341b886c8bab1719047e75ab236ca902ac4c95e5ab3f1f57e40cc602efd2b776b26efdca6eb4c0bffbc096d3d0afcdb48357b6c6adf
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

17 lines
581 B
Plaintext

import { DirectusRelation } from "../../../schema/relation.cjs";
import { RestCommand } from "../../types.cjs";
//#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: <Schema>(collection: DirectusRelation<Schema>["collection"], field: DirectusRelation<Schema>["field"]) => RestCommand<void, Schema>;
//#endregion
export { deleteRelation };
//# sourceMappingURL=relations.d.cts.map