Strict boolean check in src/charging-station/UIServiceWorkerBroadcastChannel.ts
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index 77c38f04971770aebe2dfe300c41f2a427d750e5..834b1d1dd11e4031eba25d7af689f88eab3b3639 100644 (file)
@@ -1,9 +1,9 @@
 import type { OCPPConfigurationKey } from './ocpp/Configuration';
 
-export interface ConfigurationKey extends OCPPConfigurationKey {
+export type ConfigurationKey = OCPPConfigurationKey & {
   visible?: boolean;
   reboot?: boolean;
-}
+};
 
 export type ChargingStationOcppConfiguration = {
   configurationKey?: ConfigurationKey[];