1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-08 00:01:28 +01:00

[EC-598] chore: clean up old commented code

This commit is contained in:
Andreas Coroiu 2023-04-12 10:56:12 +02:00
parent 0ce8cc0b24
commit 489c438ff4
No known key found for this signature in database
GPG Key ID: E70B5FFC81DFEC1A

View File

@ -5,22 +5,6 @@ export interface NewCredentialParams {
export abstract class Fido2UserInterfaceService {
newSession: (abortController?: AbortController) => Promise<Fido2UserInterfaceSession>;
// confirmCredential: (cipherId: string, abortController?: AbortController) => Promise<boolean>;
// pickCredential: (cipherIds: string[], abortController?: AbortController) => Promise<string>;
// confirmNewCredential: (
// params: NewCredentialParams,
// abortController?: AbortController
// ) => Promise<boolean>;
// confirmNewNonDiscoverableCredential: (
// params: NewCredentialParams,
// abortController?: AbortController
// ) => Promise<string | undefined>;
// informExcludedCredential: (
// existingCipherIds: string[],
// newCredential: NewCredentialParams,
// abortController?: AbortController
// ) => Promise<void>;
}
export abstract class Fido2UserInterfaceSession {