summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-09-28 23:50:14 -0700
committerMatthew Miller <matthew@millerti.me>2023-09-28 23:50:14 -0700
commitf1d27138c7ce44ed2e2f22c19f40beed02cf6cba (patch)
tree4a422cdb45db0f393396e31483747b7bead7104f /packages/browser/src
parent75e07cfbedab2ceb80ef7f39486e7aed5ef7975c (diff)
Expose WebauthnAbortService as package export
Diffstat (limited to 'packages/browser/src')
-rw-r--r--packages/browser/src/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts
index 9e75d75..9805fe6 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';