X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Focpp%2FMeterValues.ts;h=f34a8c176fd3cf711ee158bad3f9ac2e0f950c3e;hb=899cb106c44c0b7a56266b5470a22c0cc773cc44;hp=c8c283860f7776108483a7d4b912d7b5daff0891;hpb=9c13b3b52e1ab803a92f090da6920310c80c12da;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/ocpp/MeterValues.ts b/src/types/ocpp/MeterValues.ts index c8c28386..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'; - -export type MeterValueMeasurand = typeof MeterValueMeasurand; +import { + type OCPP16MeterValue, + OCPP16MeterValueMeasurand, + OCPP16MeterValuePhase, + type OCPP16SampledValue, +} from './1.6/MeterValues'; export const MeterValueMeasurand = { - ...OCPP16MeterValueMeasurand -}; + ...OCPP16MeterValueMeasurand, +} as const; +export type MeterValueMeasurand = OCPP16MeterValueMeasurand; + +export const MeterValuePhase = { + ...OCPP16MeterValuePhase, +} as const; +export type MeterValuePhase = OCPP16MeterValuePhase; export type SampledValue = OCPP16SampledValue; + +export type MeterValue = OCPP16MeterValue;