diff options
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 67c7c74..7fe2c4b 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -2,18 +2,18 @@ * @packageDocumentation * @module @simplewebauthn/browser */ -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'; +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, + startAuthentication, + startRegistration, }; -export type { WebAuthnErrorCode } from './helpers/webAuthnError'; +export type { WebAuthnErrorCode } from "./helpers/webAuthnError"; |