Merge pull request #1026 from SAP/dependabot/npm_and_yarn/vite-5.2.8
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / MeterValues.ts
... / ...
CommitLineData
1import {
2 type OCPP16MeterValue,
3 OCPP16MeterValueContext,
4 OCPP16MeterValueLocation,
5 OCPP16MeterValueMeasurand,
6 OCPP16MeterValuePhase,
7 OCPP16MeterValueUnit,
8 type OCPP16SampledValue
9} from './1.6/MeterValues.js'
10
11export const MeterValueUnit = {
12 ...OCPP16MeterValueUnit
13} as const
14// eslint-disable-next-line @typescript-eslint/no-redeclare
15export type MeterValueUnit = OCPP16MeterValueUnit
16
17export const MeterValueContext = {
18 ...OCPP16MeterValueContext
19} as const
20// eslint-disable-next-line @typescript-eslint/no-redeclare
21export type MeterValueContext = OCPP16MeterValueContext
22
23export const MeterValueMeasurand = {
24 ...OCPP16MeterValueMeasurand
25} as const
26// eslint-disable-next-line @typescript-eslint/no-redeclare
27export type MeterValueMeasurand = OCPP16MeterValueMeasurand
28
29export const MeterValueLocation = {
30 ...OCPP16MeterValueLocation
31} as const
32// eslint-disable-next-line @typescript-eslint/no-redeclare
33export type MeterValueLocation = OCPP16MeterValueLocation
34
35export const MeterValuePhase = {
36 ...OCPP16MeterValuePhase
37} as const
38// eslint-disable-next-line @typescript-eslint/no-redeclare
39export type MeterValuePhase = OCPP16MeterValuePhase
40
41export type SampledValue = OCPP16SampledValue
42
43export type MeterValue = OCPP16MeterValue