diff options
author | Matthew Miller <matthew@millerti.me> | 2023-10-02 22:34:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 22:34:41 -0700 |
commit | fc17d1a4c91fda50ddb07693d3aea09d74cdc3c7 (patch) | |
tree | 77a57851214b5ebb105cae182f68935461b8ba0f /packages/browser/src/index.ts | |
parent | 1c70e39302d81eb6fe2ba23da07c60f2dc397498 (diff) | |
parent | 3bc51ff209c71c8d2dd1e7a324eab487c5213c7f (diff) |
Merge pull request #449 from MasterKale/feat/448-manual-ceremony-cancellation
feat/448-manual-ceremony-cancellation
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 9e75d75..d45fafb 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -9,6 +9,7 @@ import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticato import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAuthnAutofill'; import { base64URLStringToBuffer } from './helpers/base64URLStringToBuffer'; import { bufferToBase64URLString } from './helpers/bufferToBase64URLString'; +import { WebAuthnAbortService } from './helpers/webAuthnAbortService'; export { base64URLStringToBuffer, @@ -18,6 +19,7 @@ export { platformAuthenticatorIsAvailable, startAuthentication, startRegistration, + WebAuthnAbortService, }; export type { WebAuthnErrorCode } from './helpers/webAuthnError'; |