touchscreen.tap
Dispatches atouchstart and touchend event (simulates a tap).
Upstream docs
touchscreen.touchStart
Dispatches atouchstart event.
Returns a TouchHandle that can be used to dispatch
touchMove and touchEnd events
for this specific touch point. This allows tracking individual touches in multi-touch scenarios.The returned TouchHandle has:move(x, y): Dispatches a touchmove event for this touchend(): Dispatches a touchend event for this touch
Return value
touchscreen.touchMove
Dispatches atouchmove event on the active touch.
Note: Not every
touchMove call results in a touchmove event being emitted,
depending on the browser’s optimizations.For more precise control over individual touches, use touchStart() which returns
a TouchHandle with its own move() method.touchscreen.touchEnd
Dispatches atouchend event.
Upstream docs

