Cleanups and dependency update.
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
1 import { OCPP16MeterValueMeasurand, OCPP16SampledValue } from './1.6/MeterValues';
2
3 export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
4
5 export const MeterValueMeasurand = {
6 ...OCPP16MeterValueMeasurand
7 };
8
9 export type SampledValue = OCPP16SampledValue;