16 lines
389 B
TypeScript
16 lines
389 B
TypeScript
import { UpdateUserFunctionReturn } from "../../types";
|
|
type Param = {
|
|
key?: string;
|
|
database?: string;
|
|
updatedUserId: string | number;
|
|
payload: {
|
|
[s: string]: any;
|
|
};
|
|
user_id?: boolean;
|
|
};
|
|
/**
|
|
* # Update User
|
|
*/
|
|
export default function updateUser({ key, payload, database, user_id, updatedUserId, }: Param): Promise<UpdateUserFunctionReturn>;
|
|
export {};
|