docs: refine README.md
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
index f2e6e9c05c11dc9c5b03166c1dfd49b6ac7b9f11..aec3d19e1934e4e61a030713d9018e58ad05f158 100644 (file)
@@ -1,17 +1,43 @@
-import { OCPP16MeterValue, OCPP16MeterValueMeasurand, OCPP16MeterValuePhase, OCPP16SampledValue } from './1.6/MeterValues';
+import {
+  type OCPP16MeterValue,
+  OCPP16MeterValueContext,
+  OCPP16MeterValueLocation,
+  OCPP16MeterValueMeasurand,
+  OCPP16MeterValuePhase,
+  OCPP16MeterValueUnit,
+  type OCPP16SampledValue
+} from './1.6/MeterValues.js'
 
-export type MeterValueMeasurand = OCPP16MeterValueMeasurand;
+export const MeterValueUnit = {
+  ...OCPP16MeterValueUnit
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type MeterValueUnit = OCPP16MeterValueUnit
+
+export const MeterValueContext = {
+  ...OCPP16MeterValueContext
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type MeterValueContext = OCPP16MeterValueContext
 
 export const MeterValueMeasurand = {
   ...OCPP16MeterValueMeasurand
-};
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type MeterValueMeasurand = OCPP16MeterValueMeasurand
 
-export type MeterValuePhase = OCPP16MeterValuePhase;
+export const MeterValueLocation = {
+  ...OCPP16MeterValueLocation
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type MeterValueLocation = OCPP16MeterValueLocation
 
 export const MeterValuePhase = {
   ...OCPP16MeterValuePhase
-};
+} as const
+// eslint-disable-next-line @typescript-eslint/no-redeclare
+export type MeterValuePhase = OCPP16MeterValuePhase
 
-export type SampledValue = OCPP16SampledValue;
+export type SampledValue = OCPP16SampledValue
 
-export type MeterValue = OCPP16MeterValue;
+export type MeterValue = OCPP16MeterValue