Fix documentation generation
[poolifier.git] / src / index.ts
CommitLineData
c97c7edb
S
1export { DynamicClusterPool } from './pools/cluster/dynamic'
2export { FixedClusterPool } from './pools/cluster/fixed'
3export type { ClusterPoolOptions } from './pools/cluster/fixed'
b4904890 4export type { IPool, PoolEmitter, PoolOptions } from './pools/pool'
bdaf31cd
JB
5export type {
6 ErrorHandler,
7 ExitHandler,
ea7a90d3 8 MessageHandler,
bdaf31cd
JB
9 OnlineHandler
10} from './pools/pool-worker'
11export { WorkerChoiceStrategies } from './pools/selection-strategies/selection-strategies-types'
12export type { WorkerChoiceStrategy } from './pools/selection-strategies/selection-strategies-types'
c97c7edb
S
13export { DynamicThreadPool } from './pools/thread/dynamic'
14export { FixedThreadPool } from './pools/thread/fixed'
15export type { ThreadWorkerWithMessageChannel } from './pools/thread/fixed'
c97c7edb
S
16export { ClusterWorker } from './worker/cluster-worker'
17export { ThreadWorker } from './worker/thread-worker'
1a81f8af
S
18export { KillBehaviors } from './worker/worker-options'
19export type { KillBehavior, WorkerOptions } from './worker/worker-options'