Files
klz-cables.com/.pnpm-store/v10/files/86/51703a9f1524b8dc3da568de86c2109de0ba06dc7d7c9b407e7b3d9ff44714f229faf5656fcb250b2938a411a472eafe57480dc38805f34449032aa131c8cd
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
706 B
Plaintext

import { DirectusOperation } from "../../../schema/operation.cjs";
import { RestCommand } from "../../types.cjs";
//#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.cts.map