* Removes a callback that would be called when the pointer moves within the Component. * * @param {PointerCallback} callback * @return {Interactions.Pointer} The calling Pointer Interaction.
(callback: PointerCallback)
| 105 | * @return {Interactions.Pointer} The calling Pointer Interaction. |
| 106 | */ |
| 107 | public offPointerMove(callback: PointerCallback) { |
| 108 | this._pointerMoveCallbacks.delete(callback); |
| 109 | return this; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Adds a callback to be called when the pointer exits the Component. |
no test coverage detected