Destroys all event listeners and detaches the renderer.
()
| 277 | |
| 278 | /** Destroys all event listeners and detaches the renderer. */ |
| 279 | public destroy(): void { |
| 280 | this.setTargetElement(null); |
| 281 | this.renderer = null; |
| 282 | this._currentCursor = null; |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Sets the current cursor mode, handling any callbacks or CSS style changes. |
nothing calls this directly
no test coverage detected