Files
klz-cables.com/.pnpm-store/v10/files/7f/2c9926ccd62012a1e638d5a29be84ec5d4ba03d935b550b65f36cf203ebbd7ab19949c6c00d0042f87b8d090edd8ade0d42c7a949ad6537a50beda631aacf0
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
673 B
Plaintext

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