summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-08-23 21:13:35 -0700
committerGitHub <noreply@github.com>2021-08-23 21:13:35 -0700
commit30ecc73b9856747337523f1e367b10d9d96a4a95 (patch)
tree793c1d8e592d58aacbb6cd8468bd692c6131b8a5 /packages/browser/src/index.ts
parent9a849c3d7eb6c82195ddfcd20f1ad4796a7873ec (diff)
parentfb79f6941a1be0a4c320bb91079e109ee01cd5ad (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.ts10
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,
+};