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