summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-08-23 21:08:38 -0700
committerMatthew Miller <matthew@millerti.me>2021-08-23 21:08:38 -0700
commitfb79f6941a1be0a4c320bb91079e109ee01cd5ad (patch)
tree793c1d8e592d58aacbb6cd8468bd692c6131b8a5 /packages/browser/src/index.ts
parent40c1380745bfae180a58e0ba967466ab7ffac937 (diff)
Export new helper method
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r--packages/browser/src/index.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts
index c342ddb..94c9755 100644
--- a/packages/browser/src/index.ts
+++ b/packages/browser/src/index.ts
@@ -5,5 +5,11 @@
import startAttestation from './methods/startAttestation';
import startAssertion from './methods/startAssertion';
import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn';
+import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable';
-export { startAttestation, startAssertion, browserSupportsWebauthn };
+export {
+ startAttestation,
+ startAssertion,
+ browserSupportsWebauthn,
+ platformAuthenticatorIsAvailable,
+};