diff options
author | Matthew Miller <matthew@millerti.me> | 2020-12-01 14:54:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 14:54:42 -0800 |
commit | bcc9978ce9f28e223580fca41a206e543bdee09c (patch) | |
tree | 3d4abb84cdd5fd8ef3553e50946ccfb187f217ff /packages/server/src/assertion/verifyAssertionResponse.ts | |
parent | b0f3b8f39bd5e57d81e77d71d667968e3734d670 (diff) | |
parent | dd5c803ce2914da49ad5f9462c05b49026c6c377 (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.ts | 6 |
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'; |