Fix UT
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
... / ...
CommitLineData
1import {
2 type OCPP16ChargingProfile,
3 OCPP16ChargingRateUnitType,
4 type OCPP16ChargingSchedulePeriod,
5} from './1.6/ChargingProfile';
6
7export type ChargingProfile = OCPP16ChargingProfile;
8
9export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
10
11export const ChargingRateUnitType = {
12 ...OCPP16ChargingRateUnitType,
13} as const;
14export type ChargingRateUnitType = OCPP16ChargingRateUnitType;