diff options
author | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:11:22 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:11:22 -0700 |
commit | df183cd36ab29d72b6c65c871ff87bcc51e5957b (patch) | |
tree | 090599c2f2a3daa473e5dfc92045a9d0a2633009 /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | 77c6942aa673c019715bd6dbf9c92264630fc85a (diff) |
Export named verifyAuthenticationResponse()
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 ebc1dca..227b0f1 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -37,7 +37,7 @@ export type VerifyAuthenticationResponseOpts = { * @param requireUserVerification (Optional) Enforce user verification by the authenticator * (via PIN, fingerprint, etc...) */ -export default function verifyAuthenticationResponse( +export function verifyAuthenticationResponse( options: VerifyAuthenticationResponseOpts, ): VerifiedAuthenticationResponse { const { |