summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src
diff options
context:
space:
mode:
authorEiji Kitamura <agektmr@google.com>2022-07-22 22:26:37 +0900
committerEiji Kitamura <agektmr@google.com>2022-07-22 22:26:37 +0900
commit70993ae52b1715e88a5eebee2153b14af47418cc (patch)
treef6b2467b8d49073fa9586c4f67383c44240e881d /packages/server/src
parentca546ef7525bc8c75d23158c78ab98d7de98d0f8 (diff)
Rename
UvmJSON => UVMAuthenticatorOutput
Diffstat (limited to 'packages/server/src')
-rw-r--r--packages/server/src/helpers/decodeAuthenticatorExtensions.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts
index b5da8fe..41a907d 100644
--- a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts
+++ b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts
@@ -20,7 +20,7 @@ export default function decodeAuthenticatorExtensionData(
export type AuthenticationExtensionsAuthenticatorOutputs = {
devicePublicKey?: DevicePublicKeyAuthenticatorOutput;
- uvm?: UvmJSON;
+ uvm?: UVMAuthenticatorOutput;
}
export type DevicePublicKeyAuthenticatorOutput = {
@@ -32,6 +32,6 @@ export type DevicePublicKeyAuthenticatorOutput = {
// TODO: Need to verify this format
// https://w3c.github.io/webauthn/#sctn-uvm-extension.
-export type UvmJSON = {
+export type UVMAuthenticatorOutput = {
uvm?: Buffer[]
}