14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
import { UpdateUserFunctionReturn } from "../../types";
|
|
type Param = {
|
|
key?: string;
|
|
database: string;
|
|
deletedUserId: string | number;
|
|
useLocal?: boolean;
|
|
apiVersion?: string;
|
|
};
|
|
/**
|
|
* # Update User
|
|
*/
|
|
export default function deleteUser({ key, database, deletedUserId, useLocal, apiVersion, }: Param): Promise<UpdateUserFunctionReturn>;
|
|
export {};
|