Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ export * from './config.js';
export * from './dialog.js';
export * from './electronicStatement.js';
export * from './httpClient.js';
export { AccountBalanceResponse } from './interactions/balanceInteraction.js';
export { ClientResponse, StatementResponse } from './interactions/customerInteraction.js';
export {
export type { AccountBalanceResponse } from './interactions/balanceInteraction.js';
export type { ClientResponse, StatementResponse } from './interactions/customerInteraction.js';
export type {
ElectronicStatementOptions,
ElectronicStatementResponse,
} from './interactions/electronicStatementInteraction.js';
export { PortfolioResponse } from './interactions/portfolioInteraction.js';
export type { PortfolioResponse } from './interactions/portfolioInteraction.js';
export * from './message.js';
export * from './mt535parser.js';
export * from './mt940parser.js';
Expand Down
4 changes: 2 additions & 2 deletions src/mt940parser.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Balance, Statement, Transaction } from './statement.js';
import type { Balance, Statement, Transaction } from './statement.js';

export { Statement, Transaction, Balance };
export type { Statement, Transaction, Balance };

export enum TokenType {
Tag = 'Tag',
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"declarationDir": "./dist/types" /* Specify the output directory for generated declaration files. */,
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
/* Interop Constraints */
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
"isolatedModules": true /* Ensure that each file can be safely transpiled without relying on other imports. */,
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
Expand Down
Loading