1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

[EC-598] feat: remove ability to duplicate excluded credentials

This commit is contained in:
Andreas Coroiu
2023-03-22 16:07:13 +01:00
parent 4926278fb9
commit 260bcc9f9e
3 changed files with 24 additions and 26 deletions

View File

@@ -10,9 +10,9 @@ export abstract class Fido2UserInterfaceService {
params: NewCredentialParams,
abortController?: AbortController
) => Promise<boolean>;
confirmDuplicateCredential: (
informExcludedCredential: (
existingCipherIds: string[],
newCredential: NewCredentialParams,
abortController?: AbortController
) => Promise<boolean>;
) => Promise<void>;
}