blob: 4c83297b0a855b087d18008812220c24563ebb10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @packageDocumentation
* @module @simplewebauthn/browser
*/
import startRegistration from './methods/startRegistration';
import startAuthentication from './methods/startAuthentication';
import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn';
import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable';
export {
startRegistration,
startAuthentication,
browserSupportsWebauthn,
platformAuthenticatorIsAvailable,
};
|