Files
klz-cables.com/.pnpm-store/v10/files/56/19d26f1f783e33de8440b1514b6215511c09b41aa072405bb5194bf7b746c42237c42bdf2874ae1bfbd67a71db0481a05e5eb6e1fc09dce03b77a0d9e937ff
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
725 B
Plaintext

import { DirectusPermission } from "../../../schema/permission.js";
import { RestCommand } from "../../types.js";
//#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.ts.map