Preview 2.0 is now in Public Beta!
Read the Announcement
TouchGestureEventData
interface TouchGestureEventData extends TapGestureEventData {
  action: "up" | "move" | "down" | "cancel";
  getActivePointers(): Pointer[];
  getAllPointers(): Pointer[];
}

Summary

Properties

action
4 properties inherited from GestureEventData
Click to expand
2 properties inherited from EventData
Click to expand

Properties

action

action: "up" | "move" | "down" | "cancel"

Methods

getActivePointers

getActivePointers(): Pointer[]

getAllPointers

getAllPointers(): Pointer[]
Previous
TimerInfo