diff options
author | Matthew Miller <matthew@millerti.me> | 2021-08-25 21:25:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 21:25:57 -0700 |
commit | f38363c22f9168653f47f3d112338b80cab93deb (patch) | |
tree | 6569142b2ad7d1a8a797a7be439e6377d2b750ea /packages/browser/src/index.ts | |
parent | 30ecc73b9856747337523f1e367b10d9d96a4a95 (diff) | |
parent | b831fc557aac088c2cace7279decb842bb2214a0 (diff) |
Merge pull request #147 from JayHelton/v4/rename-methods-and-types
feat/rename methods and types
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, }; |