fix: move and fix statistic related helpers implementation
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index 77c38f04971770aebe2dfe300c41f2a427d750e5..bbd1bcfb20fa6354ed1a6b27e42be227eec6eefc 100644 (file)
@@ -1,9 +1,9 @@
-import type { OCPPConfigurationKey } from './ocpp/Configuration';
+import type { OCPPConfigurationKey } from './internal';
 
-export interface ConfigurationKey extends OCPPConfigurationKey {
+export type ConfigurationKey = OCPPConfigurationKey & {
   visible?: boolean;
   reboot?: boolean;
-}
+};
 
 export type ChargingStationOcppConfiguration = {
   configurationKey?: ConfigurationKey[];