6 lines
274 B
TypeScript
6 lines
274 B
TypeScript
import { APIResponseObject, ResetPasswordParams } from "../../../types";
|
|
/**
|
|
* # Update API User Function
|
|
*/
|
|
export default function apiResetUserPassword({ updatedUserId, database, dbUserId, newPassword, encryptionKey, }: ResetPasswordParams): Promise<APIResponseObject>;
|