Bump @types/node from 14.14.31 to 14.14.32 (#258)
[poolifier.git] / src / index.ts
... / ...
CommitLineData
1export type {
2 ErrorHandler,
3 ExitHandler,
4 IWorker,
5 OnlineHandler,
6 PoolOptions
7} from './pools/abstract-pool'
8export { DynamicClusterPool } from './pools/cluster/dynamic'
9export { FixedClusterPool } from './pools/cluster/fixed'
10export type { ClusterPoolOptions } from './pools/cluster/fixed'
11export type { IPool } from './pools/pool'
12export { WorkerChoiceStrategies } from './pools/selection-strategies'
13export type { WorkerChoiceStrategy } from './pools/selection-strategies'
14export { DynamicThreadPool } from './pools/thread/dynamic'
15export { FixedThreadPool } from './pools/thread/fixed'
16export type { ThreadWorkerWithMessageChannel } from './pools/thread/fixed'
17export { AbstractWorker } from './worker/abstract-worker'
18export { ClusterWorker } from './worker/cluster-worker'
19export { ThreadWorker } from './worker/thread-worker'
20export { KillBehaviors } from './worker/worker-options'
21export type { KillBehavior, WorkerOptions } from './worker/worker-options'