summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-08-25 21:25:57 -0700
committerGitHub <noreply@github.com>2021-08-25 21:25:57 -0700
commitf38363c22f9168653f47f3d112338b80cab93deb (patch)
tree6569142b2ad7d1a8a797a7be439e6377d2b750ea /packages/browser/src/index.ts
parent30ecc73b9856747337523f1e367b10d9d96a4a95 (diff)
parentb831fc557aac088c2cace7279decb842bb2214a0 (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.ts8
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,
};