X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fworker%2Findex.ts;h=e53c3457fa636e3496ce8ab823b19f41d5965f7c;hb=20558952fb18725ad134a5148a873a30fcced31d;hp=9fa370555ca23416422c3a1e4112595f37a6fbad;hpb=17bc43d765c22c8d8c132484f8dc9c3edd370d91;p=e-mobility-charging-stations-simulator.git diff --git a/src/worker/index.ts b/src/worker/index.ts index 9fa37055..e53c3457 100644 --- a/src/worker/index.ts +++ b/src/worker/index.ts @@ -1,10 +1,16 @@ -export { WorkerAbstract } from './WorkerAbstract'; -export { WorkerConstants } from './WorkerConstants'; +export type { WorkerAbstract } from './WorkerAbstract'; +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, - WorkerData, - WorkerMessage, + type WorkerData, + WorkerEvents, + type WorkerMessage, WorkerMessageEvents, - MessageHandler, + WorkerProcessType, } from './WorkerTypes';