summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-04 08:04:44 -0700
committerGitHub <noreply@github.com>2022-07-04 08:04:44 -0700
commit184cbb4457285817db4ded722d7b54528988e2e0 (patch)
tree3b895f8c273e924dd6fdd52c50fd2528575dc41d /packages/browser/src/index.ts
parent524e7f881624f36aa17f406bb25fa23d02449652 (diff)
parent5a5b5a3bdf7c709493fc9e63f0f02eed99f25baf (diff)
Merge pull request #214 from MasterKale/feat/conditional-ui
feat/conditional-ui
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r--packages/browser/src/index.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts
index 4c83297..e288b7c 100644
--- a/packages/browser/src/index.ts
+++ b/packages/browser/src/index.ts
@@ -2,14 +2,16 @@
* @packageDocumentation
* @module @simplewebauthn/browser
*/
-import startRegistration from './methods/startRegistration';
-import startAuthentication from './methods/startAuthentication';
+import { startRegistration } from './methods/startRegistration';
+import { startAuthentication } from './methods/startAuthentication';
import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn';
import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable';
+import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAuthnAutofill';
export {
startRegistration,
startAuthentication,
browserSupportsWebauthn,
+ browserSupportsWebAuthnAutofill,
platformAuthenticatorIsAvailable,
};