X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Findex.ts;h=67f64f0b3ca91bdb853aafffa4b38fd47955a46a;hb=1c881a974a7849061a4e508885b5a96bdc134194;hp=a4e22756afc61c8bfe9bd0ff58b088d2031b06c3;hpb=89757908a0cf61d60dcf28323c5c23c4ef66fcf2;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index a4e22756..67f64f0b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,6 +16,8 @@ export type { } from './pools/pool' export { WorkerTypes } from './pools/worker' export type { + BackPressureCallback, + EmptyQueueCallback, ErrorHandler, EventLoopUtilizationMeasurementStatistics, ExitHandler, @@ -67,8 +69,9 @@ export type { Task, TaskError, 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'