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