refactor(simulator): switch to named exports
[e-mobility-charging-stations-simulator.git] / src / charging-station / MessageChannelUtils.ts
index 40496b602cf2456c88761966a231f0db21ed009e..d8f1aa105a926b4fc0cf3b2025c9b58f121a3bf4 100644 (file)
@@ -1,10 +1,10 @@
-import type ChargingStation from './ChargingStation';
+import type { ChargingStation } from './ChargingStation';
 import {
   type ChargingStationData,
   type ChargingStationWorkerMessage,
   ChargingStationWorkerMessageEvents,
-} from '../types/ChargingStationWorker';
-import type { Statistics } from '../types/Statistics';
+  type Statistics,
+} from '../types';
 
 export class MessageChannelUtils {
   private constructor() {