summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.ts
blob: 99c266913a3a84e6e537037a13485781a8f915a1 (plain)
1
2
3
4
5
6
7
8
9
/**
 * @packageDocumentation
 * @module @simplewebauthn/browser
 */
import startAttestation from './methods/startAttestation';
import startAssertion from './methods/startAssertion';
import supportsWebauthn from './helpers/supportsWebauthn';

export default { startAttestation, startAssertion, supportsWebauthn };