Eslint configuration refinement (#97)
[poolifier.git] / src / index.ts
CommitLineData
60fbd6d6
S
1import { DynamicThreadPool } from './dynamic'
2import { FixedThreadPool } from './fixed'
4ade5f1f
S
3import { ThreadWorker } from './workers'
4
fa699c42 5export { DynamicThreadPoolOptions } from './dynamic'
ee99693b 6export {
4ade5f1f
S
7 Draft,
8 FixedThreadPoolOptions,
9 WorkerWithMessageChannel
10} from './fixed'
ee99693b 11export { ThreadWorkerOptions } from './workers'
4ade5f1f 12export { FixedThreadPool, DynamicThreadPool, ThreadWorker }