fix: flag dynamic pool mode as experimental
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerTypes.ts
index 7bcb108e9a5fe3c89722956e19103ed1e77d9b96..5bf339fb976677ef3a8e275b399330758ecdea75 100644 (file)
@@ -4,11 +4,13 @@ import { type PoolEvent, PoolEvents, type ThreadPoolOptions } from 'poolifier';
 
 export enum WorkerProcessType {
   workerSet = 'workerSet',
+  /** @experimental */
   dynamicPool = 'dynamicPool',
   staticPool = 'staticPool',
 }
 
 export type SetInfo = {
+  version: string;
   type: string;
   worker: string;
   size: number;