react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
11 lines (10 loc) • 504 B
TypeScript
import { AdaptedEvent } from '../interfaces';
import GestureHandler from './GestureHandler';
export default class ManualGestureHandler extends GestureHandler {
protected onPointerDown(event: AdaptedEvent): void;
protected onPointerAdd(event: AdaptedEvent): void;
protected onPointerMove(event: AdaptedEvent): void;
protected onPointerOutOfBounds(event: AdaptedEvent): void;
protected onPointerUp(event: AdaptedEvent): void;
protected onPointerRemove(event: AdaptedEvent): void;
}