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:
@@ -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>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user