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