diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-22 10:13:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 10:13:03 -0700 |
commit | fefc95e4535e6ecf903f647124a492fba3fd11d6 (patch) | |
tree | 4c924d43d32fb12a780533302eaf5dee08875d75 /packages/server/src/index.ts | |
parent | 443c341bc2163f07b93a3ef84a43294d10b826f8 (diff) | |
parent | 2935857c76d458c26701842e500f8d97d17499c5 (diff) |
Merge pull request #425 from MasterKale/feat/server-esm-take-2-dnt
feat/server-esm-take-2-dnt
Diffstat (limited to 'packages/server/src/index.ts')
-rw-r--r-- | packages/server/src/index.ts | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/packages/server/src/index.ts b/packages/server/src/index.ts index e15054a..2e2a25b 100644 --- a/packages/server/src/index.ts +++ b/packages/server/src/index.ts @@ -2,40 +2,40 @@ * @packageDocumentation * @module @simplewebauthn/server */ -import { generateRegistrationOptions } from './registration/generateRegistrationOptions'; -import { verifyRegistrationResponse } from './registration/verifyRegistrationResponse'; -import { generateAuthenticationOptions } from './authentication/generateAuthenticationOptions'; -import { verifyAuthenticationResponse } from './authentication/verifyAuthenticationResponse'; -import { MetadataService } from './services/metadataService'; -import { SettingsService } from './services/settingsService'; +import { generateRegistrationOptions } from './registration/generateRegistrationOptions.ts'; +import { verifyRegistrationResponse } from './registration/verifyRegistrationResponse.ts'; +import { generateAuthenticationOptions } from './authentication/generateAuthenticationOptions.ts'; +import { verifyAuthenticationResponse } from './authentication/verifyAuthenticationResponse.ts'; +import { MetadataService } from './services/metadataService.ts'; +import { SettingsService } from './services/settingsService.ts'; export { + generateAuthenticationOptions, generateRegistrationOptions, - verifyRegistrationResponse, - generateAuthenticationOptions as generateAuthenticationOptions, - verifyAuthenticationResponse, MetadataService, SettingsService, + verifyAuthenticationResponse, + verifyRegistrationResponse, }; -import type { GenerateRegistrationOptionsOpts } from './registration/generateRegistrationOptions'; -import type { GenerateAuthenticationOptionsOpts } from './authentication/generateAuthenticationOptions'; -import type { MetadataStatement } from './metadata/mdsTypes'; +import type { GenerateRegistrationOptionsOpts } from './registration/generateRegistrationOptions.ts'; +import type { GenerateAuthenticationOptionsOpts } from './authentication/generateAuthenticationOptions.ts'; +import type { MetadataStatement } from './metadata/mdsTypes.ts'; import type { VerifiedRegistrationResponse, VerifyRegistrationResponseOpts, -} from './registration/verifyRegistrationResponse'; +} from './registration/verifyRegistrationResponse.ts'; import type { VerifiedAuthenticationResponse, VerifyAuthenticationResponseOpts, -} from './authentication/verifyAuthenticationResponse'; +} from './authentication/verifyAuthenticationResponse.ts'; export type { - GenerateRegistrationOptionsOpts, GenerateAuthenticationOptionsOpts, + GenerateRegistrationOptionsOpts, MetadataStatement, - VerifyRegistrationResponseOpts, - VerifyAuthenticationResponseOpts, - VerifiedRegistrationResponse, VerifiedAuthenticationResponse, + VerifiedRegistrationResponse, + VerifyAuthenticationResponseOpts, + VerifyRegistrationResponseOpts, }; |