perf: optimize performance statistics computation
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index 77c38f04971770aebe2dfe300c41f2a427d750e5..7bc47aae3d8caa79be98ca8f24036b64c111fc25 100644 (file)
@@ -1,10 +1,10 @@
 import type { OCPPConfigurationKey } from './ocpp/Configuration';
 
-export interface ConfigurationKey extends OCPPConfigurationKey {
+export type ConfigurationKey = OCPPConfigurationKey & {
   visible?: boolean;
   reboot?: boolean;
-}
+};
 
-export type ChargingStationOcppConfiguration = {
+export interface ChargingStationOcppConfiguration {
   configurationKey?: ConfigurationKey[];
-};
+}