diff options
author | Antoine Cormouls <contact.antoine.cormouls@gmail.com> | 2020-12-04 21:27:35 +0100 |
---|---|---|
committer | Antoine Cormouls <contact.antoine.cormouls@gmail.com> | 2020-12-04 21:27:35 +0100 |
commit | e2f91c5facf90a43c3c017ace1200a6c5eeb0ae6 (patch) | |
tree | 1428a536ca056fe45f35d91dc3869a0a40dafaae /packages/typescript-types/src | |
parent | 5ca05db4d889471397ce33312e622a18cf653d67 (diff) |
fix tests
Diffstat (limited to 'packages/typescript-types/src')
-rw-r--r-- | packages/typescript-types/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 933407c..436f7ff 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -35,7 +35,7 @@ export interface PublicKeyCredentialCreationOptionsJSON export interface PublicKeyCredentialRequestOptionsJSON extends Omit<PublicKeyCredentialRequestOptions, 'challenge' | 'allowCredentials'> { challenge: Base64URLString; - allowCredentials: PublicKeyCredentialDescriptorJSON[] | undefined; + allowCredentials?: PublicKeyCredentialDescriptorJSON[]; } export interface PublicKeyCredentialDescriptorJSON |