diff options
author | Matthew Miller <matthew@millerti.me> | 2021-01-30 11:18:49 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2021-02-05 09:57:48 -0800 |
commit | 689cd00703cf7dcec1ce6437cd014bff2966c75f (patch) | |
tree | cd2d0d74a78fa8358e781c8de59252d03f082bd1 /packages/typescript-types | |
parent | edc118d41ceb788ea9b2fbef876ab874e7f0c498 (diff) |
Fix credProps extension input
Diffstat (limited to 'packages/typescript-types')
-rw-r--r-- | packages/typescript-types/src/index.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts index 5ab574f..012611f 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -152,10 +152,7 @@ export interface AuthenticatorAttestationResponseFuture extends AuthenticatorAtt export interface CredentialCreationExtensionsInputJSON { appidExclude?: string; uvm?: boolean; - credProps?: { - first: Base64URLString; - second?: Base64URLString; - }; + credProps?: boolean; prf?: { eval?: { first: Base64URLString; |