diff --git a/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts b/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts index 2cd354556e0..4486cc5bbfc 100644 --- a/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts +++ b/libs/common/src/webauthn/abstractions/fido2-user-interface.service.abstraction.ts @@ -5,22 +5,6 @@ export interface NewCredentialParams { export abstract class Fido2UserInterfaceService { newSession: (abortController?: AbortController) => Promise; - - // confirmCredential: (cipherId: string, abortController?: AbortController) => Promise; - // pickCredential: (cipherIds: string[], abortController?: AbortController) => Promise; - // confirmNewCredential: ( - // params: NewCredentialParams, - // abortController?: AbortController - // ) => Promise; - // confirmNewNonDiscoverableCredential: ( - // params: NewCredentialParams, - // abortController?: AbortController - // ) => Promise; - // informExcludedCredential: ( - // existingCipherIds: string[], - // newCredential: NewCredentialParams, - // abortController?: AbortController - // ) => Promise; } export abstract class Fido2UserInterfaceSession {