From c01fd8466b633c103661652e00e90678f4d9e287 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Sat, 19 Nov 2022 23:54:08 -0800 Subject: Fix issues in Browser due to TypeScript upgrade --- packages/typescript-types/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'packages/typescript-types') diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index be935a4..59e3442 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -95,7 +95,10 @@ export interface AuthenticationCredentialJSON * are Base64URL-encoded in the browser so that they can be sent as JSON to the server. */ export interface AuthenticatorAttestationResponseJSON - extends Omit { + extends Omit< + AuthenticatorAttestationResponseFuture, + 'clientDataJSON' | 'attestationObject' | 'getTransports' | 'getAuthenticatorData' | 'getPublicKey' | 'getPublicKeyAlgorithm' + > { clientDataJSON: Base64URLString; attestationObject: Base64URLString; } -- cgit v1.2.3