summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-06-01 16:27:54 -0700
committerMatthew Miller <matthew@millerti.me>2020-06-01 16:27:54 -0700
commit9776fc1d95558c598895f247dd3780f4dfdde0f2 (patch)
treed2baeaba2ebc0d1948398ee48150fdc28197c653 /packages/typescript-types/src
parent16b9d3339312bcccb0f31122b697feceea7a1a18 (diff)
Stop exporting two now-internal types
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r--packages/typescript-types/src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 886d8f1..a1d93e0 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -75,13 +75,13 @@ export interface AssertionCredentialJSON extends Omit<AssertionCredential, 'resp
response: AuthenticatorAssertionResponseJSON;
}
-export interface AuthenticatorAttestationResponseJSON
+interface AuthenticatorAttestationResponseJSON
extends Omit<AuthenticatorAttestationResponse, 'clientDataJSON' | 'attestationObject'> {
clientDataJSON: Base64String;
attestationObject: Base64String;
}
-export interface AuthenticatorAssertionResponseJSON
+interface AuthenticatorAssertionResponseJSON
extends Omit<
AuthenticatorAssertionResponse,
'authenticatorData' | 'clientDataJSON' | 'signature' | 'userHandle'