X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.ts;h=1e5ecbff62f82623a76feaa591c71a334a3c36c3;hb=e306946120701658e4caf024464b7b47d207b9ad;hp=6f6c53849162e84377d7c6380c1c29b3e499d127;hpb=251d6ac2d29d7361d671a8df17af51b414ea3b83;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index 6f6c5384..1e5ecbff 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,6 +23,7 @@ export type { MeasurementStatistics, MessageHandler, OnlineHandler, + StrategyData, TaskStatistics, WorkerInfo, WorkerType, @@ -58,6 +58,7 @@ export type { export type { TaskAsyncFunction, TaskFunction, + TaskFunctionOperationResult, TaskFunctions, TaskSyncFunction } from './worker/task-functions' @@ -65,10 +66,11 @@ export type { MessageValue, PromiseResponseWrapper, Task, - TaskError, + WorkerError, TaskPerformance, - WorkerStatistics + WorkerStatistics, + Writable } from './utility-types' export type { CircularArray } from './circular-array' -export type { Deque } from './deque' +export type { Deque, Node } from './deque' export { availableParallelism } from './utils'