Files
klz-cables.com/.pnpm-store/v10/files/7b/5a0c3f84560b129f2760583b6acf5e8e177c684c0181554eef44bd20317fb317bdf47e4ce3532efdf8e383523d40f9dd33694f26b851dfd1c99c6828b3484b
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

24 lines
668 B
Plaintext

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