X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FMeterValues.ts;h=2172ec1f925762826eba130ef579abcc7587230a;hb=51c83d6f833f27f9990c17fc380ab5ee618894b1;hp=1022c9fbbce8a5d8c62a1f13b4f49f59e19a8d86;hpb=fd0c36fab7509aeb48c1fbb40b70072fe64ae63c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/MeterValues.ts b/src/types/ocpp/MeterValues.ts index 1022c9fb..2172ec1f 100644 --- a/src/types/ocpp/MeterValues.ts +++ b/src/types/ocpp/MeterValues.ts @@ -1,9 +1,20 @@ -import { OCPP16MeterValue, OCPP16MeterValueMeasurand, OCPP16SampledValue } from './1.6/MeterValues'; +import { + OCPP16MeterValue, + OCPP16MeterValueMeasurand, + OCPP16MeterValuePhase, + OCPP16SampledValue, +} from './1.6/MeterValues'; export type MeterValueMeasurand = OCPP16MeterValueMeasurand; export const MeterValueMeasurand = { - ...OCPP16MeterValueMeasurand + ...OCPP16MeterValueMeasurand, +}; + +export type MeterValuePhase = OCPP16MeterValuePhase; + +export const MeterValuePhase = { + ...OCPP16MeterValuePhase, }; export type SampledValue = OCPP16SampledValue;