fix(ui): add action cancellation
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
index 834b1d1dd11e4031eba25d7af689f88eab3b3639..2ea2c53e5e12677132557991a0cd4d0f890c91e1 100644 (file)
@@ -1,10 +1,10 @@
-import type { OCPPConfigurationKey } from './ocpp/Configuration';
+import type { OCPPConfigurationKey } from './ocpp/Configuration.js'
 
 export type ConfigurationKey = OCPPConfigurationKey & {
-  visible?: boolean;
-  reboot?: boolean;
-};
+  visible?: boolean
+  reboot?: boolean
+}
 
-export type ChargingStationOcppConfiguration = {
-  configurationKey?: ConfigurationKey[];
-};
+export interface ChargingStationOcppConfiguration {
+  configurationKey?: ConfigurationKey[]
+}