diff options
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index b56842f..be935a4 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -142,10 +142,7 @@ export type Base64URLString = string; * Properties marked optional are not supported in all browsers. */ export interface AuthenticatorAttestationResponseFuture extends AuthenticatorAttestationResponse { - getTransports?: () => AuthenticatorTransportFuture[]; - getAuthenticatorData?: () => ArrayBuffer; - getPublicKey?: () => ArrayBuffer; - getPublicKeyAlgorithm?: () => COSEAlgorithmIdentifier[]; + getTransports: () => AuthenticatorTransportFuture[]; } /** @@ -171,8 +168,6 @@ export interface PublicKeyCredentialDescriptorFuture export interface PublicKeyCredentialFuture extends PublicKeyCredential { // See https://github.com/w3c/webauthn/issues/1745 isConditionalMediationAvailable?(): Promise<boolean>; - // See https://w3c.github.io/webauthn/#dom-publickeycredential-authenticatorattachment - authenticatorAttachment?: AuthenticatorAttachment; } /** |