fix: avoid worker-threads restart at error during startup
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index bbd1bcfb20fa6354ed1a6b27e42be227eec6eefc..7bc47aae3d8caa79be98ca8f24036b64c111fc25 100644 (file)
@@ -1,10 +1,10 @@
-import type { OCPPConfigurationKey } from './internal';
+import type { OCPPConfigurationKey } from './ocpp/Configuration';
 
 export type ConfigurationKey = OCPPConfigurationKey & {
   visible?: boolean;
   reboot?: boolean;
 };
 
-export type ChargingStationOcppConfiguration = {
+export interface ChargingStationOcppConfiguration {
   configurationKey?: ConfigurationKey[];
-};
+}