refactor(simulator): switch to internal modules export/import design
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargingProfile.ts
CommitLineData
cfa9539e 1import {
6e939d9e 2 type OCPP16ChargingProfile,
cfa9539e 3 OCPP16ChargingRateUnitType,
6e939d9e 4 type OCPP16ChargingSchedulePeriod,
2896e06d 5} from '../internal';
c0560973
JB
6
7export type ChargingProfile = OCPP16ChargingProfile;
cfa9539e
JB
8
9export type ChargingSchedulePeriod = OCPP16ChargingSchedulePeriod;
10
cfa9539e
JB
11export const ChargingRateUnitType = {
12 ...OCPP16ChargingRateUnitType,
edd13439
JB
13} as const;
14export type ChargingRateUnitType = OCPP16ChargingRateUnitType;