Convert types to native type
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index b6d9ec9278e89db8f81e3a7205078f6bd6adb7df..77c38f04971770aebe2dfe300c41f2a427d750e5 100644 (file)
@@ -5,6 +5,6 @@ export interface ConfigurationKey extends OCPPConfigurationKey {
   reboot?: boolean;
 }
 
-export default interface ChargingStationOcppConfiguration {
+export type ChargingStationOcppConfiguration = {
   configurationKey?: ConfigurationKey[];
-}
+};