23 lines
536 B
TypeScript
23 lines
536 B
TypeScript
type Return = {
|
|
success: boolean;
|
|
msg?: string;
|
|
error?: string;
|
|
};
|
|
type Param = {
|
|
key?: string;
|
|
database: string;
|
|
email: string;
|
|
encryptionKey?: string;
|
|
encryptionSalt?: string;
|
|
debug?: boolean;
|
|
apiUserID?: string | number;
|
|
dbUserId?: string | number;
|
|
};
|
|
/**
|
|
* # API Login
|
|
*/
|
|
export default function apiSendResetPasswordLink({ database, email, dbUserId, debug, }: Param): Promise<Return>;
|
|
export type SendResetPasswordParam = Param;
|
|
export type SendResetPasswordReturn = Return;
|
|
export {};
|