interface AuthConfirmResetPasswordInput<ServiceOptions> {
    confirmationCode: string;
    newPassword: string;
    options?: ServiceOptions;
    username: string;
}

Type Parameters

Properties

confirmationCode: string
newPassword: string
options?: ServiceOptions
username: string