* end this transition if it is in progress.
()
| 51 | * end this transition if it is in progress. |
| 52 | */ |
| 53 | end() { |
| 54 | if (this._inProgress) { |
| 55 | this._timeline.removeChannel(this._handle as number); |
| 56 | this._handle = null; |
| 57 | this._inProgress = false; |
| 58 | this.settings.onEnd?.(this); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * cancel this transition if it is in progress. |
no outgoing calls
no test coverage detected