README.md: fix sections hierarchy
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
index c8c283860f7776108483a7d4b912d7b5daff0891..1022c9fbbce8a5d8c62a1f13b4f49f59e19a8d86 100644 (file)
@@ -1,9 +1,11 @@
-import { OCPP16MeterValueMeasurand, OCPP16SampledValue } from './1.6/MeterValues';
+import { OCPP16MeterValue, OCPP16MeterValueMeasurand, OCPP16SampledValue } from './1.6/MeterValues';
 
-export type MeterValueMeasurand = typeof MeterValueMeasurand;
+export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
 
 export const MeterValueMeasurand = {
   ...OCPP16MeterValueMeasurand
 };
 
 export type SampledValue = OCPP16SampledValue;
+
+export type MeterValue = OCPP16MeterValue;