diff options
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 4 |
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' |