X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Findex.ts;h=4431b0f98f2617376df1d82937316633267f16de;hb=dea903a811a58acdf93f11379b347bfd8088e970;hp=0c948c847b6bb974253e4c421e640a95b5bc5fd7;hpb=70c7d7d3af9c38417416ca9096a6ab3ae835b5d0;p=poolifier.git diff --git a/src/index.ts b/src/index.ts index 0c948c84..4431b0f9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,14 +2,16 @@ export { DynamicClusterPool } from './pools/cluster/dynamic' export { FixedClusterPool } from './pools/cluster/fixed' export type { ClusterPoolOptions } from './pools/cluster/fixed' export type { AbstractPool } from './pools/abstract-pool' -export { PoolEvents } from './pools/pool' +export { PoolEvents, PoolTypes, WorkerTypes } from './pools/pool' export type { IPool, PoolEmitter, PoolEvent, + PoolInfo, PoolOptions, PoolType, - TasksQueueOptions + TasksQueueOptions, + WorkerType } from './pools/pool' export type { ErrorHandler, @@ -47,3 +49,4 @@ export type { WorkerSyncFunction } from './utility-types' export type { CircularArray } from './circular-array' +export type { Queue } from './queue'