build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
... / ...
CommitLineData
1import {
2 type OCPP16ChargingProfile,
3 OCPP16ChargingProfileKindType,
4 OCPP16ChargingProfilePurposeType,
5 OCPP16ChargingRateUnitType,
6 type OCPP16ChargingSchedulePeriod,
7 OCPP16RecurrencyKindType
8} from './1.6/ChargingProfile.js'
9
10export type ChargingProfile = OCPP16ChargingProfile
11
12export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod
13
14export const ChargingProfilePurposeType = {
15 ...OCPP16ChargingProfilePurposeType
16} as const
17// eslint-disable-next-line @typescript-eslint/no-redeclare
18export type ChargingProfilePurposeType = OCPP16ChargingProfilePurposeType
19
20export const ChargingProfileKindType = {
21 ...OCPP16ChargingProfileKindType
22} as const
23// eslint-disable-next-line @typescript-eslint/no-redeclare
24export type ChargingProfileKindType = OCPP16ChargingProfileKindType
25
26export const RecurrencyKindType = {
27 ...OCPP16RecurrencyKindType
28} as const
29// eslint-disable-next-line @typescript-eslint/no-redeclare
30export type RecurrencyKindType = OCPP16RecurrencyKindType
31
32export const ChargingRateUnitType = {
33 ...OCPP16ChargingRateUnitType
34} as const
35// eslint-disable-next-line @typescript-eslint/no-redeclare
36export type ChargingRateUnitType = OCPP16ChargingRateUnitType