diff options
author | Matthew Miller <matthew@millerti.me> | 2022-06-19 11:28:16 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-06-19 11:28:16 -0700 |
commit | 84d931ea0aadc249a72cfd422b912dec0d52f995 (patch) | |
tree | bc84f30a7c20d0dc2ba32030966961de1d174387 /packages/browser/src/index.ts | |
parent | 62a0b18a586bdb6ebcc89aefe2b925181003aa3a (diff) |
Rename conditional UI support check method
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index dc085d0..2b327ee 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -6,10 +6,12 @@ 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, platformAuthenticatorIsAvailable, + browserSupportsWebAuthnAutofill, }; |