diff options
author | Matthew Miller <matthew@millerti.me> | 2021-04-17 22:06:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 22:06:35 -0700 |
commit | becd1415ff3fba22218f808f6dac761901b71a5c (patch) | |
tree | 541f90e33aa08659c985c5c3f91ebfaed74692e8 /packages/typescript-types/src | |
parent | cb445cd8404af140120260ca77294a70d7202a71 (diff) | |
parent | 926eda9ae5f12b88179c6c13d0ee5ede49e5e411 (diff) |
Merge pull request #120 from MasterKale/fix/simplify-encoding-user-handle-in-assertion-response
fix/simplify-encoding-user-handle-in-assertion-response
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 ab39bd6..4834a37 100644 --- a/packages/typescript-types/src/index.ts +++ b/packages/typescript-types/src/index.ts @@ -49,7 +49,7 @@ export interface PublicKeyCredentialDescriptorJSON export interface PublicKeyCredentialUserEntityJSON extends Omit<PublicKeyCredentialUserEntity, 'id'> { - id: Base64URLString; + id: string; } /** @@ -111,7 +111,7 @@ export interface AuthenticatorAssertionResponseJSON authenticatorData: Base64URLString; clientDataJSON: Base64URLString; signature: Base64URLString; - userHandle?: Base64URLString; + userHandle?: string; } /** |