diff options
author | Matthew Miller <matthew@millerti.me> | 2021-02-06 15:22:29 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2021-02-06 15:22:29 -0800 |
commit | 8412b4edc5e77018a6ec5c289883c62f46e100a4 (patch) | |
tree | 54c81355fedbccd830cdb65273946ab552e35a39 /packages/typescript-types | |
parent | 0917970d2d071f309cc97998a14192efe434577d (diff) |
Remove optional from clientExtensionResults type
Diffstat (limited to 'packages/typescript-types')
-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 9d8a856..ab39bd6 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -67,8 +67,8 @@ export interface AttestationCredentialJSON extends Omit<AttestationCredential, 'response' | 'rawId' | 'getClientExtensionResults'> { rawId: Base64URLString; response: AuthenticatorAttestationResponseJSON; + clientExtensionResults: AuthenticationExtensionsClientOutputs; transports?: AuthenticatorTransport[]; - clientExtensionResults?: AuthenticationExtensionsClientOutputs; } /** @@ -86,7 +86,7 @@ export interface AssertionCredentialJSON extends Omit<AssertionCredential, 'response' | 'rawId' | 'getClientExtensionResults'> { rawId: Base64URLString; response: AuthenticatorAssertionResponseJSON; - clientExtensionResults?: AuthenticationExtensionsClientOutputs; + clientExtensionResults: AuthenticationExtensionsClientOutputs; } /** |