X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Findex.ts;h=e53c3457fa636e3496ce8ab823b19f41d5965f7c;hb=156c5f4ee0466adeb90e1e131e98b3f271955787;hp=036ddaf168f69253e2618153617ad6f75bb38b49;hpb=2896e06dc8d72adf7150b23c941079f622f6f37c;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/index.ts b/src/worker/index.ts index 036ddaf1..e53c3457 100644 --- a/src/worker/index.ts +++ b/src/worker/index.ts @@ -1,10 +1,16 @@ export type { WorkerAbstract } from './WorkerAbstract'; -export { WorkerConstants } from './WorkerConstants'; +export { + DEFAULT_ELEMENT_START_DELAY, + DEFAULT_POOL_MAX_SIZE, + DEFAULT_POOL_MIN_SIZE, + DEFAULT_WORKER_START_DELAY, + POOL_MAX_INACTIVE_TIME, +} from './WorkerConstants'; export { WorkerFactory } from './WorkerFactory'; export { - WorkerProcessType, type WorkerData, + WorkerEvents, type WorkerMessage, WorkerMessageEvents, - type MessageHandler, + WorkerProcessType, } from './WorkerTypes';