Files
klz-cables.com/.pnpm-store/v10/files/2c/d767aef331e5b022b4f2b79f097fcebaf655515bf150bade02f0ae295ceb0c6f675a6dc89cab4bafcbd58f4d81891d582077385d64239f921ab6cab3691039
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
665 B
Plaintext

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