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
24 lines
665 B
Plaintext
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 |