github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/protocol/gui-event_touch.go (about) 1 /* For license and copyright information please see LEGAL file in repository */ 2 3 package protocol 4 5 // https://developer.mozilla.org/en-US/docs/Web/API/TouchEvent 6 type TouchEvent interface { 7 Event 8 9 Type() string 10 } 11 12 // https://developer.mozilla.org/en-US/docs/Web/API/Touch