Interface IChangePasswordArgs

Arguments for changing the account password.

interface IChangePasswordArgs {
    currentPassword: string;
    newPassword: string;
}

Implemented by

Properties

currentPassword: string

The current account password.

newPassword: string

The new password to set.