Files
klz-cables.com/.pnpm-store/v10/files/4f/c43bd4cb24a8af0d77d412f352ab19742df4e1e37beab8a0c35b95469a9b8128d4ec55403b93f5c24c64f2cb13c8bdbc970924e6300ca945d24bc64376be74
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
646 B
Plaintext

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