Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
index aa50c75222623680885bb8e0b85950150dae0181..c094aab3e761dfaf7cc152c9a267c424a70aa8f3 100644 (file)
@@ -1,9 +1,9 @@
-import type { JsonObject } from '../JsonType';
 import {
   OCPP16StandardParametersKey,
   OCPP16SupportedFeatureProfiles,
   OCPP16VendorDefaultParametersKey,
 } from './1.6/Configuration';
+import type { JsonObject } from '../JsonType';
 
 export const StandardParametersKey = {
   ...OCPP16StandardParametersKey,
@@ -31,8 +31,8 @@ export enum ConnectorPhaseRotation {
   TSR = 'TSR',
 }
 
-export interface OCPPConfigurationKey extends JsonObject {
+export type OCPPConfigurationKey = {
   key: string | StandardParametersKey;
   readonly: boolean;
   value?: string;
-}
+} & JsonObject;