Files
klz-cables.com/.pnpm-store/v10/files/17/746f9a805705c85581eb5134f9efb5c74066a769f871285c29042567480b94d5542d7b8ce5ff8e7ec5f48e6fbb87de52cb4f0d540a1c50ffd543a6fe3e0c10
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

22 lines
703 B
Plaintext

import { DirectusOperation } from "../../../schema/operation.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/delete/operations.d.ts
/**
* Delete multiple existing operations.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteOperations: <Schema>(keys: DirectusOperation<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing operation.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteOperation: <Schema>(key: DirectusOperation<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteOperation, deleteOperations };
//# sourceMappingURL=operations.d.ts.map