More typing.
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationConfiguration.ts
diff --git a/src/types/ChargingStationConfiguration.ts b/src/types/ChargingStationConfiguration.ts
new file mode 100644 (file)
index 0000000..b39a595
--- /dev/null
@@ -0,0 +1,11 @@
+export interface ConfigurationKey {
+  key: string;
+  readonly?: boolean;
+  value: string;
+  visible?: boolean;
+  reboot?: boolean;
+}
+
+export default interface ChargingStationConfiguration {
+  configurationKey: ConfigurationKey[];
+}