summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/assertion/verifyAssertionResponse.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-12-01 14:54:42 -0800
committerGitHub <noreply@github.com>2020-12-01 14:54:42 -0800
commitbcc9978ce9f28e223580fca41a206e543bdee09c (patch)
tree3d4abb84cdd5fd8ef3553e50946ccfb187f217ff /packages/server/src/assertion/verifyAssertionResponse.ts
parentb0f3b8f39bd5e57d81e77d71d667968e3734d670 (diff)
parentdd5c803ce2914da49ad5f9462c05b49026c6c377 (diff)
Merge pull request #67 from jstewmon/server-no-dom
chore: remove dom lib reference from server package
Diffstat (limited to 'packages/server/src/assertion/verifyAssertionResponse.ts')
-rw-r--r--packages/server/src/assertion/verifyAssertionResponse.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/server/src/assertion/verifyAssertionResponse.ts b/packages/server/src/assertion/verifyAssertionResponse.ts
index b2923ee..993b7e9 100644
--- a/packages/server/src/assertion/verifyAssertionResponse.ts
+++ b/packages/server/src/assertion/verifyAssertionResponse.ts
@@ -1,5 +1,9 @@
import base64url from 'base64url';
-import { AssertionCredentialJSON, AuthenticatorDevice } from '@simplewebauthn/typescript-types';
+import {
+ AssertionCredentialJSON,
+ AuthenticatorDevice,
+ UserVerificationRequirement,
+} from '@simplewebauthn/typescript-types';
import decodeClientDataJSON from '../helpers/decodeClientDataJSON';
import toHash from '../helpers/toHash';