Merge branch 'master' of github.com:LucasBrazi06/ev-simulator into master-enterprise
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Configuration.ts
1 import { OCPP16StandardParametersKey } from './1.6/Configuration';
2
3 export type StandardParametersKey = OCPP16StandardParametersKey;
4
5 export const StandardParametersKey = {
6 ...OCPP16StandardParametersKey
7 };
8
9 export interface OCPPConfigurationKey {
10 key: string | StandardParametersKey;
11 readonly: boolean;
12 value?: string;
13 }