refactor(simulator): switch to named exports
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStationWorker.ts
index 2204f308f699aff9179ab9c0096e11722df909ab..d28204e3a57c9ffc0316387beb8a5057de7f345a 100644 (file)
@@ -4,12 +4,11 @@ import { parentPort, workerData } from 'worker_threads';
 
 import { ThreadWorker } from 'poolifier';
 
-import ChargingStation from './ChargingStation';
+import { ChargingStation } from './ChargingStation';
 import { ChargingStationUtils } from './ChargingStationUtils';
-import type { ChargingStationWorkerData } from '../types/ChargingStationWorker';
-import { type WorkerMessage, WorkerMessageEvents } from '../types/Worker';
-import Utils from '../utils/Utils';
-import WorkerConstants from '../worker/WorkerConstants';
+import type { ChargingStationWorkerData } from '../types';
+import { Utils } from '../utils/Utils';
+import { WorkerConstants, type WorkerMessage, WorkerMessageEvents } from '../worker';
 
 // Conditionally export ThreadWorker instance for pool usage
 export let threadWorker: ThreadWorker;