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

[EC-598] feat: show new cipher being added

This commit is contained in:
Andreas Coroiu
2023-01-05 14:30:00 +01:00
parent 6c7548c7ec
commit f0b8d32ee6
7 changed files with 80 additions and 61 deletions

View File

@@ -1,5 +1,9 @@
export interface NewCredentialParams {
name: string;
}
export abstract class Fido2UserInterfaceService {
verifyUser: () => Promise<boolean>;
verifyPresence: () => Promise<boolean>;
confirmNewCredential: () => Promise<boolean>;
confirmNewCredential: (params: NewCredentialParams) => Promise<boolean>;
}