X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Findex.ts;h=190a6a41034d2738ef9b5e434cec82dc29917619;hb=6e177b76d80dc30e471ec9f3500560285c48fc0f;hp=9bf1e284f84ec4fb64c45c635af91115d1605cb5;hpb=c9101d5d7c5fcb3cbadee55596cc38975e4929b7;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/index.ts b/src/worker/index.ts index 9bf1e284..190a6a41 100644 --- a/src/worker/index.ts +++ b/src/worker/index.ts @@ -1,11 +1,17 @@ -export type { WorkerAbstract } from './WorkerAbstract'; -export { WorkerConstants } from './WorkerConstants'; -export { WorkerFactory } from './WorkerFactory'; +export type { WorkerAbstract } from './WorkerAbstract.js' +export { + DEFAULT_ELEMENT_ADD_DELAY, + DEFAULT_ELEMENTS_PER_WORKER, + DEFAULT_POOL_MAX_SIZE, + DEFAULT_POOL_MIN_SIZE, + DEFAULT_WORKER_START_DELAY +} from './WorkerConstants.js' +export { WorkerFactory } from './WorkerFactory.js' export { - type MessageHandler, type WorkerData, + type WorkerDataError, WorkerEvents, type WorkerMessage, WorkerMessageEvents, - WorkerProcessType, -} from './WorkerTypes'; + WorkerProcessType +} from './WorkerTypes.js'