refactor(simulator): add type shorcuts for OCPP configuration keys
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
CommitLineData
e7aeea18 1import {
edd13439 2 type OCPP16MeterValue,
e7aeea18
JB
3 OCPP16MeterValueMeasurand,
4 OCPP16MeterValuePhase,
edd13439 5 type OCPP16SampledValue,
2896e06d 6} from '../internal';
c0560973 7
c0560973 8export const MeterValueMeasurand = {
e7aeea18 9 ...OCPP16MeterValueMeasurand,
edd13439
JB
10} as const;
11export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
9ccca265
JB
12
13export const MeterValuePhase = {
e7aeea18 14 ...OCPP16MeterValuePhase,
edd13439
JB
15} as const;
16export type MeterValuePhase = OCPP16MeterValuePhase;
9ccca265 17
c0560973 18export type SampledValue = OCPP16SampledValue;
fd0c36fa
JB
19
20export type MeterValue = OCPP16MeterValue;