()
| 189 | } |
| 190 | |
| 191 | finalize() { |
| 192 | for (const eventName in this._events) { |
| 193 | if (this._events[eventName]) { |
| 194 | // @ts-ignore (2345) event type string cannot be assifned to enum |
| 195 | // eslint-disable-next-line @typescript-eslint/unbound-method |
| 196 | this.eventManager?.off(eventName, this.handleEvent); |
| 197 | } |
| 198 | } |
| 199 | this.transitionManager.finalize(); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Callback for events |
no test coverage detected
searching dependent graphs…