build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationEvents.ts
1 export enum ChargingStationEvents {
2 added = 'added',
3 deleted = 'deleted',
4 started = 'started',
5 stopped = 'stopped',
6 updated = 'updated',
7 registered = 'registered',
8 accepted = 'accepted',
9 rejected = 'rejected',
10 disconnected = 'disconnected',
11 connectorStatusChanged = 'connectorStatusChanged'
12 }