summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-04-05 21:38:27 -0700
committerMatthew Miller <matthew@millerti.me>2021-04-05 21:38:27 -0700
commit72085de0b16c2467af32a45fa8c86cd531a632eb (patch)
tree3053a9b7a0ae74ac41aceb7c0428bc6b5c202dae /packages/browser/src/index.ts
parent437884d6df6d40d48318e2926465f18e638f1fa1 (diff)
Revert `export default` from index.ts
Diffstat (limited to 'packages/browser/src/index.ts')
-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 99c2669..1b450d6 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 default { startAttestation, startAssertion, supportsWebauthn };
+export { startAttestation, startAssertion, supportsWebauthn };