refactor(simulator): cleanup id tags cache namespace
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationWorker.ts
index d53152dc00dd4c2cf56f0d23064d35548468d9cc..7578b217270a8e7f6342ef68c7bc90638d9efcd9 100644 (file)
@@ -36,10 +36,10 @@ export interface ChargingStationData extends WorkerData {
 }
 
 enum ChargingStationMessageEvents {
-  STARTED = 'started',
-  STOPPED = 'stopped',
-  UPDATED = 'updated',
-  PERFORMANCE_STATISTICS = 'performanceStatistics',
+  started = 'started',
+  stopped = 'stopped',
+  updated = 'updated',
+  performanceStatistics = 'performanceStatistics',
 }
 
 export const ChargingStationWorkerMessageEvents = {