Bump vm2 from 3.9.10 to 3.9.11 (#192)
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index a1da931f0bf77986f6da897b916906e6e4cc7414..834b1d1dd11e4031eba25d7af689f88eab3b3639 100644 (file)
@@ -1,10 +1,10 @@
-import { OCPPConfigurationKey } from './ocpp/Configuration';
+import type { OCPPConfigurationKey } from './ocpp/Configuration';
 
-export interface ConfigurationKey extends OCPPConfigurationKey {
+export type ConfigurationKey = OCPPConfigurationKey & {
   visible?: boolean;
   reboot?: boolean;
-}
+};
 
-export default interface ChargingStationOcppConfiguration {
+export type ChargingStationOcppConfiguration = {
   configurationKey?: ConfigurationKey[];
-}
+};