diff options
Diffstat (limited to 'packages/server/src')
-rw-r--r-- | packages/server/src/helpers/decodeAuthenticatorExtensions.ts | 4 |
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[] } |