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