summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2024-01-19 22:07:29 -0800
committerGitHub <noreply@github.com>2024-01-19 22:07:29 -0800
commit2f4d01b6a1831bfeb22befe220995a2c4f01c905 (patch)
tree0c85e24e2b8e67fde47635149f0aa6e4f9630886 /packages/browser/src
parentd5a68625ee6eef874f241fcb223b2a046683af63 (diff)
parent73d0fe3236aff2693a279748eee2eea4ef2f4c77 (diff)
Merge pull request #505 from zoontek/export-webauthn-error
Export WebAuthnError
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 d45fafb..fdb3e55 100644
--- a/packages/browser/src/index.ts
+++ b/packages/browser/src/index.ts
@@ -10,6 +10,7 @@ import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAut
import { base64URLStringToBuffer } from './helpers/base64URLStringToBuffer';
import { bufferToBase64URLString } from './helpers/bufferToBase64URLString';
import { WebAuthnAbortService } from './helpers/webAuthnAbortService';
+import { WebAuthnError } from './helpers/webAuthnError';
export {
base64URLStringToBuffer,
@@ -20,6 +21,7 @@ export {
startAuthentication,
startRegistration,
WebAuthnAbortService,
+ WebAuthnError,
};
export type { WebAuthnErrorCode } from './helpers/webAuthnError';