refactor(ui): cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
index 75062774d57b0871d7a2d595b4e5bdd5d1590a9f..c174234812421c929e78f82bbbafdcceff45cdbe 100644 (file)
@@ -39,13 +39,13 @@ export enum ConnectorPhaseRotation {
   SRT = 'SRT',
   STR = 'STR',
   TRS = 'TRS',
-  TSR = 'TSR',
+  TSR = 'TSR'
 }
 
 export type ConfigurationKeyType = string | StandardParametersKey | VendorParametersKey
 
-export type OCPPConfigurationKey = {
+export interface OCPPConfigurationKey extends JsonObject {
   key: ConfigurationKeyType
   readonly: boolean
   value?: string
-} & JsonObject
+}