Interface IResetPassword

interface IResetPassword {
    email?: string;
    newPassword?: string;
    passwordStrength?: PasswordStrength;
    token?: string;
}

Properties

email?: string

User's email address.

newPassword?: string

New password to be set.

passwordStrength?: PasswordStrength

New password's strength indicator.

token?: string

Password reset token.