20 lines
466 B
TypeScript
20 lines
466 B
TypeScript
type Param = {
|
|
payload: {
|
|
[s: string]: any;
|
|
};
|
|
dbFullName: string;
|
|
updatedUserId: string | number;
|
|
useLocal?: boolean;
|
|
dbSchema?: import("../../../types").DSQL_DatabaseSchemaType;
|
|
};
|
|
type Return = {
|
|
success: boolean;
|
|
payload?: any;
|
|
msg?: string;
|
|
};
|
|
/**
|
|
* # Update API User Function
|
|
*/
|
|
export default function apiUpdateUser({ payload, dbFullName, updatedUserId, useLocal, dbSchema, }: Param): Promise<Return>;
|
|
export {};
|