Skip to content

Commit

Permalink
chore(node): re-export config types (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo4815162342 authored Jul 6, 2024
1 parent 9b364a9 commit e75f693
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"editor.formatOnSave": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"cSpell.words": [
"dukascopy"
Expand Down
11 changes: 10 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,16 @@ export { processData } from './processor';
export { formatOutput } from './output-formatter';
export { CacheManager } from './cache-manager';

export { Config, DefaultConfig, defaultConfig } from './config';
export {
Config,
ConfigArrayTickItem,
ConfigArrayItem,
ConfigJsonTickItem,
ConfigJsonItem,
ConfigCsvItem,
DefaultConfig,
defaultConfig
} from './config';
export { Instrument, InstrumentType } from './config/instruments';
export { Timeframe, TimeframeType } from './config/timeframes';
export { Format, FormatType } from './config/format';
Expand Down

0 comments on commit e75f693

Please sign in to comment.