|
1 |
| -/** |
2 |
| - * @packageDocumentation |
3 |
| - * @module @simplewebauthn/browser |
4 |
| - */ |
5 |
| -import { startRegistration } from './methods/startRegistration.ts'; |
6 |
| -import { startAuthentication } from './methods/startAuthentication.ts'; |
7 |
| -import { browserSupportsWebAuthn } from './helpers/browserSupportsWebAuthn.ts'; |
8 |
| -import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable.ts'; |
9 |
| -import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAuthnAutofill.ts'; |
10 |
| -import { base64URLStringToBuffer } from './helpers/base64URLStringToBuffer.ts'; |
11 |
| -import { bufferToBase64URLString } from './helpers/bufferToBase64URLString.ts'; |
12 |
| -import { WebAuthnAbortService } from './helpers/webAuthnAbortService.ts'; |
13 |
| -import { WebAuthnError } from './helpers/webAuthnError.ts'; |
14 |
| - |
15 |
| -export { |
16 |
| - base64URLStringToBuffer, |
17 |
| - browserSupportsWebAuthn, |
18 |
| - browserSupportsWebAuthnAutofill, |
19 |
| - bufferToBase64URLString, |
20 |
| - platformAuthenticatorIsAvailable, |
21 |
| - startAuthentication, |
22 |
| - startRegistration, |
23 |
| - WebAuthnAbortService, |
24 |
| - WebAuthnError, |
25 |
| -}; |
26 |
| - |
27 |
| -export type { WebAuthnErrorCode } from './helpers/webAuthnError.ts'; |
| 1 | +export * from './methods/startRegistration.ts'; |
| 2 | +export * from './methods/startAuthentication.ts'; |
| 3 | +export * from './helpers/browserSupportsWebAuthn.ts'; |
| 4 | +export * from './helpers/platformAuthenticatorIsAvailable.ts'; |
| 5 | +export * from './helpers/browserSupportsWebAuthnAutofill.ts'; |
| 6 | +export * from './helpers/base64URLStringToBuffer.ts'; |
| 7 | +export * from './helpers/bufferToBase64URLString.ts'; |
| 8 | +export * from './helpers/webAuthnAbortService.ts'; |
| 9 | +export * from './helpers/webAuthnError.ts'; |
| 10 | +export * from './types/index.ts'; |
0 commit comments