feat: untangle add charging station op from start charging station op
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationEvents.ts
1 export enum ChargingStationEvents {
2 added = 'added',
3 started = 'started',
4 stopped = 'stopped',
5 updated = 'updated',
6 registered = 'registered',
7 accepted = 'accepted',
8 rejected = 'rejected',
9 disconnected = 'disconnected',
10 connectorStatusChanged = 'connectorStatusChanged'
11 }