X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.ts;h=dce003805d0ee3c7d44d499d33ce4454c188f8e0;hb=181eb2b40f0493af369dd9f36d1951d1c04d9933;hp=507fc86ffacae84875972e78ef02ef51f92f46c5;hpb=c4855468bc26a7ee37d2c8ef34bb1ac864448e77;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index 507fc86f..dce00380 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,6 +8,7 @@ export type { PoolEmitter, PoolOptions, PoolEvent, + PoolType, TasksQueueOptions } from './pools/pool' export type { @@ -16,11 +17,14 @@ export type { IWorker, MessageHandler, OnlineHandler, + Task, + TasksUsage, WorkerNode } from './pools/worker' export { WorkerChoiceStrategies } from './pools/selection-strategies/selection-strategies-types' export type { IWorkerChoiceStrategy, + RequiredStatistics, WorkerChoiceStrategy, WorkerChoiceStrategyOptions } from './pools/selection-strategies/selection-strategies-types' @@ -33,4 +37,9 @@ export { ClusterWorker } from './worker/cluster-worker' export { ThreadWorker } from './worker/thread-worker' export { KillBehaviors } from './worker/worker-options' export type { KillBehavior, WorkerOptions } from './worker/worker-options' -export type { Draft, MessageValue } from './utility-types' +export type { + Draft, + PromiseResponseWrapper, + MessageValue +} from './utility-types' +export type { CircularArray } from './circular-array'