From 2cdf440c77c104ea3a7cbe2034e02698c3f31dd7 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Thu, 17 Nov 2022 21:37:52 -0800 Subject: Update to TypeScript 4.9 --- packages/typescript-types/src/index.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'packages/typescript-types/src') 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; - // See https://w3c.github.io/webauthn/#dom-publickeycredential-authenticatorattachment - authenticatorAttachment?: AuthenticatorAttachment; } /** -- cgit v1.2.3