summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/methods
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-28 10:03:52 -0700
committerGitHub <noreply@github.com>2022-07-28 10:03:52 -0700
commit522f00d9ae613ff1f51f0c1aca85a6ae129381c5 (patch)
tree2ffa63377b3cce99dc1b7c7459292c071ce709a0 /packages/browser/src/methods
parent369708726378b0b24f873982ac9ca31d706fe2fe (diff)
parent7b1cadfaa2c5f78b56c4424db991674fddd7e152 (diff)
Merge pull request #234 from MasterKale/all-named-exports
All named exports
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r--packages/browser/src/methods/startAuthentication.test.ts4
-rw-r--r--packages/browser/src/methods/startAuthentication.ts8
-rw-r--r--packages/browser/src/methods/startRegistration.test.ts4
-rw-r--r--packages/browser/src/methods/startRegistration.ts8
4 files changed, 12 insertions, 12 deletions
diff --git a/packages/browser/src/methods/startAuthentication.test.ts b/packages/browser/src/methods/startAuthentication.test.ts
index b246cb0..e6ac9c7 100644
--- a/packages/browser/src/methods/startAuthentication.test.ts
+++ b/packages/browser/src/methods/startAuthentication.test.ts
@@ -7,8 +7,8 @@ import {
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
import { browserSupportsWebAuthnAutofill } from '../helpers/browserSupportsWebAuthnAutofill';
-import utf8StringToBuffer from '../helpers/utf8StringToBuffer';
-import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
+import { utf8StringToBuffer } from '../helpers/utf8StringToBuffer';
+import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString';
import { WebAuthnError } from '../helpers/structs';
import { generateCustomError } from '../helpers/__jest__/generateCustomError';
import { webauthnAbortService } from '../helpers/webAuthnAbortService';
diff --git a/packages/browser/src/methods/startAuthentication.ts b/packages/browser/src/methods/startAuthentication.ts
index e99629c..6bc36d7 100644
--- a/packages/browser/src/methods/startAuthentication.ts
+++ b/packages/browser/src/methods/startAuthentication.ts
@@ -4,12 +4,12 @@ import {
AuthenticationCredentialJSON,
} from '@simplewebauthn/typescript-types';
-import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
-import base64URLStringToBuffer from '../helpers/base64URLStringToBuffer';
-import bufferToUTF8String from '../helpers/bufferToUTF8String';
+import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString';
+import { base64URLStringToBuffer } from '../helpers/base64URLStringToBuffer';
+import { bufferToUTF8String } from '../helpers/bufferToUTF8String';
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
import { browserSupportsWebAuthnAutofill } from '../helpers/browserSupportsWebAuthnAutofill';
-import toPublicKeyCredentialDescriptor from '../helpers/toPublicKeyCredentialDescriptor';
+import { toPublicKeyCredentialDescriptor } from '../helpers/toPublicKeyCredentialDescriptor';
import { identifyAuthenticationError } from '../helpers/identifyAuthenticationError';
import { webauthnAbortService } from '../helpers/webAuthnAbortService';
diff --git a/packages/browser/src/methods/startRegistration.test.ts b/packages/browser/src/methods/startRegistration.test.ts
index ddc2d6a..1ca9e62 100644
--- a/packages/browser/src/methods/startRegistration.test.ts
+++ b/packages/browser/src/methods/startRegistration.test.ts
@@ -6,11 +6,11 @@ import {
} from '@simplewebauthn/typescript-types';
import { generateCustomError } from '../helpers/__jest__/generateCustomError';
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
-import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
+import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString';
import { WebAuthnError } from '../helpers/structs';
import { webauthnAbortService } from '../helpers/webAuthnAbortService';
-import utf8StringToBuffer from '../helpers/utf8StringToBuffer';
+import { utf8StringToBuffer } from '../helpers/utf8StringToBuffer';
import { startRegistration } from './startRegistration';
diff --git a/packages/browser/src/methods/startRegistration.ts b/packages/browser/src/methods/startRegistration.ts
index c9749b1..f809405 100644
--- a/packages/browser/src/methods/startRegistration.ts
+++ b/packages/browser/src/methods/startRegistration.ts
@@ -4,11 +4,11 @@ import {
RegistrationCredentialJSON,
} from '@simplewebauthn/typescript-types';
-import utf8StringToBuffer from '../helpers/utf8StringToBuffer';
-import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
-import base64URLStringToBuffer from '../helpers/base64URLStringToBuffer';
+import { utf8StringToBuffer } from '../helpers/utf8StringToBuffer';
+import { bufferToBase64URLString } from '../helpers/bufferToBase64URLString';
+import { base64URLStringToBuffer } from '../helpers/base64URLStringToBuffer';
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
-import toPublicKeyCredentialDescriptor from '../helpers/toPublicKeyCredentialDescriptor';
+import { toPublicKeyCredentialDescriptor } from '../helpers/toPublicKeyCredentialDescriptor';
import { identifyRegistrationError } from '../helpers/identifyRegistrationError';
import { webauthnAbortService } from '../helpers/webAuthnAbortService';