/** * @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, };