Merge branch 'main' into dependabot/github_actions/sonarsource/sonarcloud-github...
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index b6d9ec9278e89db8f81e3a7205078f6bd6adb7df..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 default interface ChargingStationOcppConfiguration {
+export interface ChargingStationOcppConfiguration {
   configurationKey?: ConfigurationKey[];
 }