test(simulator): use named import
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStationUtils.ts
index 92ed040696f2e60f0d3e7e13a4ee624ee3bf4047..74ec539095991ce20cfed09d0b849e2b6aa4f809 100644 (file)
@@ -4,7 +4,7 @@ import { fileURLToPath } from 'node:url';
 
 import moment from 'moment';
 
-import type { ChargingStation } from './ChargingStation';
+import type { ChargingStation } from './internal';
 import { BaseError } from '../exception';
 import {
   AmpereUnits,
@@ -23,11 +23,14 @@ import {
   RecurrencyKindType,
   Voltage,
 } from '../types';
-import { Configuration } from '../utils/Configuration';
-import { Constants } from '../utils/Constants';
-import { ACElectricUtils, DCElectricUtils } from '../utils/ElectricUtils';
-import { logger } from '../utils/Logger';
-import { Utils } from '../utils/Utils';
+import {
+  ACElectricUtils,
+  Configuration,
+  Constants,
+  DCElectricUtils,
+  Utils,
+  logger,
+} from '../utils';
 import { WorkerProcessType } from '../worker';
 
 const moduleName = 'ChargingStationUtils';