X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FMeterValues.ts;h=f2e6e9c05c11dc9c5b03166c1dfd49b6ac7b9f11;hb=071a9315b94fb1c6f7996ca71e42794ac9ff9f82;hp=b052ce694beaf94617bce80dd1266052eb3fcb64;hpb=7e3926cc4cda3fa4db175501b239cb3d8c575d4f;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/MeterValues.ts b/src/types/ocpp/MeterValues.ts index b052ce69..f2e6e9c0 100644 --- a/src/types/ocpp/MeterValues.ts +++ b/src/types/ocpp/MeterValues.ts @@ -1,4 +1,4 @@ -import { OCPP16MeterValueMeasurand, OCPP16SampledValue } from './1.6/MeterValues'; +import { OCPP16MeterValue, OCPP16MeterValueMeasurand, OCPP16MeterValuePhase, OCPP16SampledValue } from './1.6/MeterValues'; export type MeterValueMeasurand = OCPP16MeterValueMeasurand; @@ -6,4 +6,12 @@ export const MeterValueMeasurand = { ...OCPP16MeterValueMeasurand }; +export type MeterValuePhase = OCPP16MeterValuePhase; + +export const MeterValuePhase = { + ...OCPP16MeterValuePhase +}; + export type SampledValue = OCPP16SampledValue; + +export type MeterValue = OCPP16MeterValue;