build: switch to NodeNext module resolution
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
CommitLineData
e7aeea18 1import {
edd13439 2 type OCPP16MeterValue,
41f3983a
JB
3 OCPP16MeterValueContext,
4 OCPP16MeterValueLocation,
e7aeea18
JB
5 OCPP16MeterValueMeasurand,
6 OCPP16MeterValuePhase,
41f3983a 7 OCPP16MeterValueUnit,
edd13439 8 type OCPP16SampledValue,
a6ef1ece 9} from './1.6/MeterValues.js';
c0560973 10
41f3983a
JB
11export const MeterValueUnit = {
12 ...OCPP16MeterValueUnit,
13} as const;
14export type MeterValueUnit = OCPP16MeterValueUnit;
15
16export const MeterValueContext = {
17 ...OCPP16MeterValueContext,
18} as const;
19export type MeterValueContext = OCPP16MeterValueContext;
20
c0560973 21export const MeterValueMeasurand = {
e7aeea18 22 ...OCPP16MeterValueMeasurand,
edd13439
JB
23} as const;
24export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
9ccca265 25
41f3983a
JB
26export const MeterValueLocation = {
27 ...OCPP16MeterValueLocation,
28} as const;
29export type MeterValueLocation = OCPP16MeterValueLocation;
30
9ccca265 31export const MeterValuePhase = {
e7aeea18 32 ...OCPP16MeterValuePhase,
edd13439
JB
33} as const;
34export type MeterValuePhase = OCPP16MeterValuePhase;
9ccca265 35
c0560973 36export type SampledValue = OCPP16SampledValue;
fd0c36fa
JB
37
38export type MeterValue = OCPP16MeterValue;