1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 10:13:31 +00:00

[EC-598] feat: differntiate between resident auth and 2fa

This commit is contained in:
Andreas Coroiu
2023-01-05 15:29:24 +01:00
parent 132c3fe04d
commit f7a74c8cf2
6 changed files with 66 additions and 9 deletions

View File

@@ -3,6 +3,7 @@ export interface NewCredentialParams {
}
export abstract class Fido2UserInterfaceService {
confirmCredential: (cipherId: string) => Promise<boolean>;
pickCredential: (cipherIds: string[]) => Promise<string>;
confirmNewCredential: (params: NewCredentialParams) => Promise<boolean>;
}