1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 12:13:45 +00:00

[PM-18721] update PasswordInputResult

This commit is contained in:
rr-bw
2025-05-06 15:04:19 -07:00
parent 60287ce9c5
commit 1fec495ed1
2 changed files with 9 additions and 9 deletions

View File

@@ -83,12 +83,13 @@ export enum InputPasswordFlow {
}
interface InputPasswordForm {
currentPassword?: FormControl<string>;
newPassword: FormControl<string>;
newPasswordConfirm: FormControl<string>;
newPasswordHint?: FormControl<string>;
checkForBreaches?: FormControl<boolean>;
currentPassword?: FormControl<string>;
rotateUserKey?: FormControl<boolean>;
}