diff options
author | Matthew Miller <matthew@millerti.me> | 2022-11-19 23:54:08 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-11-19 23:54:08 -0800 |
commit | c01fd8466b633c103661652e00e90678f4d9e287 (patch) | |
tree | cb50048122ed209bc6e7375dda36d76507c016b3 /packages/typescript-types | |
parent | 2740f81eb2b7e31610b2250baf59591da9828ea3 (diff) |
Fix issues in Browser due to TypeScript upgrade
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 5 |
1 files changed, 4 insertions, 1 deletions
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<AuthenticatorAttestationResponseFuture, 'clientDataJSON' | 'attestationObject'> { + extends Omit< + AuthenticatorAttestationResponseFuture, + 'clientDataJSON' | 'attestationObject' | 'getTransports' | 'getAuthenticatorData' | 'getPublicKey' | 'getPublicKeyAlgorithm' + > { clientDataJSON: Base64URLString; attestationObject: Base64URLString; } |