summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
blob: 2b327ee8f7e6324f0f73c5b0cd20ca4a6bd03684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @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';

export {
  startRegistration,
  startAuthentication,
  browserSupportsWebauthn,
  platformAuthenticatorIsAvailable,
  browserSupportsWebAuthnAutofill,
};