Sync version in package.json with the one in lock file.
[poolifier.git] / src / index.ts
... / ...
CommitLineData
1import DynamicThreadPool from './dynamic'
2import FixedThreadPool from './fixed'
3import { ThreadWorker } from './workers'
4
5export {
6 Draft,
7 FixedThreadPoolOptions,
8 WorkerWithMessageChannel
9} from './fixed'
10export { DynamicThreadPoolOptions } from './dynamic'
11export { ThreadWorkerOptions } from './workers'
12export { FixedThreadPool, DynamicThreadPool, ThreadWorker }
13
14module.exports = { FixedThreadPool, DynamicThreadPool, ThreadWorker }