X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.ts;h=880fdcbac253caac0e4055f52102d8bdb3a52854;hb=8b3fccaac505706915540210b9d123e1a12e79ab;hp=6c9aa47e2092752bdadd7f409480ef8e4ce20128;hpb=de868be6cc9bcfb6d341ffb14e6407c24a1a0e17;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index 6c9aa47e..880fdcba 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,7 @@ export type { AbstractPool } from './pools/abstract-pool' export { DynamicClusterPool } from './pools/cluster/dynamic' export { FixedClusterPool } from './pools/cluster/fixed' +export type { ClusterPoolOptions } from './pools/cluster/fixed' export { PoolEvents, PoolTypes } from './pools/pool' export type { IPool, @@ -34,6 +35,7 @@ export { } from './pools/selection-strategies/selection-strategies-types' export type { IWorkerChoiceStrategy, + InternalWorkerChoiceStrategyOptions, Measurement, MeasurementOptions, MeasurementStatisticsRequirements, @@ -45,6 +47,7 @@ export type { export type { WorkerChoiceStrategyContext } from './pools/selection-strategies/worker-choice-strategy-context' export { DynamicThreadPool } from './pools/thread/dynamic' export { FixedThreadPool } from './pools/thread/fixed' +export type { ThreadPoolOptions } from './pools/thread/fixed' export type { AbstractWorker } from './worker/abstract-worker' export { ClusterWorker } from './worker/cluster-worker' export { ThreadWorker } from './worker/thread-worker'