datasquirel/package-shared/functions/api/users/api-update-user.d.ts

15 lines
382 B
TypeScript
Raw Normal View History

2024-12-08 08:58:57 +00:00
declare function _exports({ payload, dbFullName, updatedUserId, useLocal, dbSchema, }: {
2024-12-06 10:44:26 +00:00
payload: {
2024-12-08 08:58:57 +00:00
[x: string]: any;
2024-12-06 10:44:26 +00:00
};
dbFullName: string;
2024-12-08 08:58:57 +00:00
updatedUserId: string | number;
2024-12-06 11:55:03 +00:00
useLocal?: boolean;
2024-12-08 08:58:57 +00:00
dbSchema?: import("../../../types").DSQL_DatabaseSchemaType;
2024-12-06 10:44:26 +00:00
}): Promise<{
success: boolean;
2024-12-08 08:58:57 +00:00
payload?: any;
msg?: string;
2024-12-06 10:44:26 +00:00
}>;
export = _exports;