diff options
author | Matthew Miller <matthew@millerti.me> | 2022-08-22 15:29:09 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-08-22 15:29:09 -0700 |
commit | e9ef59ea41b53dc04e284dd6a17c65dae4741d07 (patch) | |
tree | 73de9361c9ac4f7143f0ce6f977183e12db078bd /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | 7b883f33c8c3d3b4e8e7c7891ab444a4a5432d99 (diff) |
Add more explicit typing
Diffstat (limited to 'packages/server/src/authentication/verifyAuthenticationResponse.ts')
-rw-r--r-- | packages/server/src/authentication/verifyAuthenticationResponse.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/authentication/verifyAuthenticationResponse.ts b/packages/server/src/authentication/verifyAuthenticationResponse.ts index ff005fe..6bb6e98 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -210,7 +210,7 @@ export async function verifyAuthenticationResponse( const { credentialDeviceType, credentialBackedUp } = parseBackupFlags(flags); - const toReturn = { + const toReturn: VerifiedAuthenticationResponse = { verified: await verifySignature({ signature, signatureBase, |