diff options
author | Matthew Miller <matthew@millerti.me> | 2021-08-23 21:13:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 21:13:35 -0700 |
commit | 30ecc73b9856747337523f1e367b10d9d96a4a95 (patch) | |
tree | 793c1d8e592d58aacbb6cd8468bd692c6131b8a5 /packages/browser/src/index.ts | |
parent | 9a849c3d7eb6c82195ddfcd20f1ad4796a7873ec (diff) | |
parent | fb79f6941a1be0a4c320bb91079e109ee01cd5ad (diff) |
Merge pull request #151 from MasterKale/feat/browser-supports-platform-authr
feat/browser-supports-platform-authr
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 1b450d6..94c9755 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -4,6 +4,12 @@ */ import startAttestation from './methods/startAttestation'; import startAssertion from './methods/startAssertion'; -import supportsWebauthn from './helpers/supportsWebauthn'; +import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn'; +import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable'; -export { startAttestation, startAssertion, supportsWebauthn }; +export { + startAttestation, + startAssertion, + browserSupportsWebauthn, + platformAuthenticatorIsAvailable, +}; |