diff options
author | Matthew Miller <matthew@millerti.me> | 2022-06-17 23:04:18 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-06-17 23:04:18 -0700 |
commit | 62a0b18a586bdb6ebcc89aefe2b925181003aa3a (patch) | |
tree | 15226788bf06268617ca2082cced9ce8e96fbd7a /packages/browser/src/index.ts | |
parent | 6b1f531754a2816bc4d0a0ea51543a1c6ba54316 (diff) |
Replace two default exports with named exports
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 4c83297..dc085d0 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -2,8 +2,8 @@ * @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'; |