refactor: rename configuration elementStartDelay to elementAddDelay
[e-mobility-charging-stations-simulator.git] / src / worker / index.ts
CommitLineData
66a7748d 1export type { WorkerAbstract } from './WorkerAbstract.js'
769d3b10 2export {
da47bc29 3 DEFAULT_ELEMENT_ADD_DELAY,
769d3b10
JB
4 DEFAULT_POOL_MAX_SIZE,
5 DEFAULT_POOL_MIN_SIZE,
66a7748d
JB
6 DEFAULT_WORKER_START_DELAY
7} from './WorkerConstants.js'
8export { WorkerFactory } from './WorkerFactory.js'
268a74bb 9export {
2896e06d 10 type WorkerData,
c9101d5d 11 WorkerEvents,
2896e06d 12 type WorkerMessage,
268a74bb 13 WorkerMessageEvents,
66a7748d
JB
14 WorkerProcessType
15} from './WorkerTypes.js'