refactor(simulator): explicitly export needed types only
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerConstants.ts
index 9a1caf8eae5cb69c9d4282ca4a9e1e9c54425c36..8e34a165c7fcb0eecb60856e86d487f1483fbe90 100644 (file)
@@ -1,8 +1,12 @@
-export default class WorkerConstants {
+export class WorkerConstants {
   static readonly DEFAULT_ELEMENT_START_DELAY = 0;
   static readonly DEFAULT_WORKER_START_DELAY = 500;
   static readonly POOL_MAX_INACTIVE_TIME = 60000;
   static readonly DEFAULT_POOL_MIN_SIZE = 4;
   static readonly DEFAULT_POOL_MAX_SIZE = 16;
   static readonly DEFAULT_ELEMENTS_PER_WORKER = 1;
+
+  private constructor() {
+    // This is intentional
+  }
 }