summaryrefslogtreecommitdiffhomepage
path: root/packages/typescript-types
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-06-01 17:14:08 -0700
committerMatthew Miller <matthew@millerti.me>2020-06-01 17:14:08 -0700
commit063282c49fc31570565348a0f1123b3d18a1e4b2 (patch)
tree2cbc53964ccc148de00f7054b264920721a0c45f /packages/typescript-types
parent344ba5cec132724bf558b0a0c3b8e78e74624c7a (diff)
Update AuthenticatorDevice type def
Diffstat (limited to 'packages/typescript-types')
-rw-r--r--packages/typescript-types/src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/typescript-types/src/index.ts b/packages/typescript-types/src/index.ts
index 40dd4dd..d4a398d 100644
--- a/packages/typescript-types/src/index.ts
+++ b/packages/typescript-types/src/index.ts
@@ -96,8 +96,8 @@ interface AuthenticatorAssertionResponseJSON
* A WebAuthn-compatible device and the information needed to verify assertions by it
*/
export type AuthenticatorDevice = {
- base64PublicKey: string;
- base64CredentialID: string;
+ publicKey: Base64String;
+ credentialID: Base64String;
// Number of times this device is expected to have been used
counter: number;
};