react-native-gesture-handler
Version:
Experimental implementation of a new declarative API for gesture handling in react-native
16 lines (14 loc) • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TouchEventType = void 0;
const TouchEventType = {
UNDETERMINED: 0,
TOUCHES_DOWN: 1,
TOUCHES_MOVE: 2,
TOUCHES_UP: 3,
TOUCHES_CANCELLED: 4
}; // eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; it can be used as a type and as a value
exports.TouchEventType = TouchEventType;
//# sourceMappingURL=TouchEventType.js.map