blob: e288b7c1729265fcab2c1d832fddabb0a0d95d1e (
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,
browserSupportsWebAuthnAutofill,
platformAuthenticatorIsAvailable,
};
|