fix: handle WebSocket opening error
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
... / ...
CommitLineData
1import {
2 type OCPP16ChargingProfile,
3 OCPP16ChargingProfileKindType,
4 OCPP16ChargingRateUnitType,
5 type OCPP16ChargingSchedulePeriod,
6 OCPP16RecurrencyKindType
7} from './1.6/ChargingProfile.js'
8
9export type ChargingProfile = OCPP16ChargingProfile
10
11export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod
12
13export const ChargingProfileKindType = {
14 ...OCPP16ChargingProfileKindType
15} as const
16// eslint-disable-next-line @typescript-eslint/no-redeclare
17export type ChargingProfileKindType = OCPP16ChargingProfileKindType
18
19export const RecurrencyKindType = {
20 ...OCPP16RecurrencyKindType
21} as const
22// eslint-disable-next-line @typescript-eslint/no-redeclare
23export type RecurrencyKindType = OCPP16RecurrencyKindType
24
25export const ChargingRateUnitType = {
26 ...OCPP16ChargingRateUnitType
27} as const
28// eslint-disable-next-line @typescript-eslint/no-redeclare
29export type ChargingRateUnitType = OCPP16ChargingRateUnitType