summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-04-01 21:13:53 -0700
committerMatthew Miller <matthew@millerti.me>2021-04-01 21:13:53 -0700
commitf7dde6e7f1f1c2ef8ac7a4c31510f34b7f4af398 (patch)
treeea61988954eda7e2889f0ede08b7c5ec1f7def28 /packages/browser/src
parentf98e5e9f1d0c922c8fed0a8ee91c92c12c7b9429 (diff)
Finally export default from index.ts
Diffstat (limited to 'packages/browser/src')
-rw-r--r--packages/browser/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts
index 1b450d6..99c2669 100644
--- a/packages/browser/src/index.ts
+++ b/packages/browser/src/index.ts
@@ -6,4 +6,4 @@ import startAttestation from './methods/startAttestation';
import startAssertion from './methods/startAssertion';
import supportsWebauthn from './helpers/supportsWebauthn';
-export { startAttestation, startAssertion, supportsWebauthn };
+export default { startAttestation, startAssertion, supportsWebauthn };