X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FConfiguration.ts;h=c174234812421c929e78f82bbbafdcceff45cdbe;hb=84ec8d3464903cfa8259ff622bff2b19b5c47132;hp=ac8a094508bfa15fe57eac1a2a1bdda844c1f145;hpb=66a7748ddeda8c94d7562a1ce58d440319654a4c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/Configuration.ts b/src/types/ocpp/Configuration.ts index ac8a0945..c1742348 100644 --- a/src/types/ocpp/Configuration.ts +++ b/src/types/ocpp/Configuration.ts @@ -44,8 +44,8 @@ export enum ConnectorPhaseRotation { export type ConfigurationKeyType = string | StandardParametersKey | VendorParametersKey -export type OCPPConfigurationKey = { +export interface OCPPConfigurationKey extends JsonObject { key: ConfigurationKeyType readonly: boolean value?: string -} & JsonObject +}