X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.ts;h=f3bbe5031e3d8b94e65c1e0dfb343fa6c5e6c301;hb=410724041bab556be1385c56f9a32e5030f6f2cf;hp=a4e22756afc61c8bfe9bd0ff58b088d2031b06c3;hpb=e8f1b6117053c649d1069dc758e5a379a442af5e;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index a4e22756..f3bbe503 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,7 +7,6 @@ export { export { PoolEvents, PoolTypes } from './pools/pool' export type { IPool, - PoolEmitter, PoolEvent, PoolInfo, PoolOptions, @@ -24,8 +23,10 @@ export type { MeasurementStatistics, MessageHandler, OnlineHandler, + StrategyData, TaskStatistics, WorkerInfo, + WorkerNodeEventCallback, WorkerType, WorkerUsage } from './pools/worker' @@ -58,6 +59,7 @@ export type { export type { TaskAsyncFunction, TaskFunction, + TaskFunctionOperationResult, TaskFunctions, TaskSyncFunction } from './worker/task-functions' @@ -65,10 +67,11 @@ export type { MessageValue, PromiseResponseWrapper, Task, - TaskError, + WorkerError, TaskPerformance, - WorkerStatistics + WorkerStatistics, + Writable } from './utility-types' export type { CircularArray } from './circular-array' -export type { Queue } from './queue' +export type { Deque, Node } from './deque' export { availableParallelism } from './utils'