* Add a new event and notify subscribers. * * @param {Object} event The event that occurred
(event: Event)
| 419 | * @param {Object} event The event that occurred |
| 420 | */ |
| 421 | addEvent(event: Event): void { |
| 422 | this.events.push(event); |
| 423 | this.eventNotify(event); |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * Add an available event. |
no test coverage detected