Files
klz-cables.com/.pnpm-store/v10/files/d7/ed1553c5595e92e1686eaa550baf1d3d02830d8995716a24d702091050adb4566aa508456488540048df5fd49b6dcd96e3f6614b69e8b13235977ab6df7b28
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
728 B
Plaintext

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