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

[EC-598] feat: allow user to pick which credential to use

This commit is contained in:
Andreas Coroiu
2023-01-05 15:07:07 +01:00
parent f0b8d32ee6
commit 132c3fe04d
7 changed files with 101 additions and 81 deletions

View File

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