diff options
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 94c9755..4c83297 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -2,14 +2,14 @@ * @packageDocumentation * @module @simplewebauthn/browser */ -import startAttestation from './methods/startAttestation'; -import startAssertion from './methods/startAssertion'; +import startRegistration from './methods/startRegistration'; +import startAuthentication from './methods/startAuthentication'; import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn'; import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable'; export { - startAttestation, - startAssertion, + startRegistration, + startAuthentication, browserSupportsWebauthn, platformAuthenticatorIsAvailable, }; |