diff options
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 520af9a..4c83297 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -4,6 +4,12 @@ */ import startRegistration from './methods/startRegistration'; import startAuthentication from './methods/startAuthentication'; -import supportsWebauthn from './helpers/supportsWebauthn'; +import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn'; +import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable'; -export { startRegistration, startAuthentication, supportsWebauthn }; +export { + startRegistration, + startAuthentication, + browserSupportsWebauthn, + platformAuthenticatorIsAvailable, +}; |