summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorJarrett Helton <jaydhelton@gmail.com>2021-08-24 18:40:09 -0400
committerJarrett Helton <jaydhelton@gmail.com>2021-08-24 18:40:09 -0400
commit22260e63c0b2a91d8f5db4000304e73b2bff9277 (patch)
tree87c3ecded4690c29cb474d0d6cd69d5ac7ef5fe6 /packages/browser/src/index.ts
parent2bb27c6febdbacbd7bbe4356318a6b3fa6fd84db (diff)
parent30ecc73b9856747337523f1e367b10d9d96a4a95 (diff)
Merge remote-tracking branch 'origin/master' into v4/rename-methods-and-types
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 520af9a..4c83297 100644
--- a/packages/browser/src/index.ts
+++ b/packages/browser/src/index.ts
@@ -4,6 +4,12 @@
*/
import startRegistration from './methods/startRegistration';
import startAuthentication from './methods/startAuthentication';
-import supportsWebauthn from './helpers/supportsWebauthn';
+import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn';
+import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable';
-export { startRegistration, startAuthentication, supportsWebauthn };
+export {
+ startRegistration,
+ startAuthentication,
+ browserSupportsWebauthn,
+ platformAuthenticatorIsAvailable,
+};