react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
21 lines • 1.18 kB
TypeScript
import FlingGestureHandler from './handlers/FlingGestureHandler';
import HoverGestureHandler from './handlers/HoverGestureHandler';
import LongPressGestureHandler from './handlers/LongPressGestureHandler';
import ManualGestureHandler from './handlers/ManualGestureHandler';
import NativeViewGestureHandler from './handlers/NativeViewGestureHandler';
import PanGestureHandler from './handlers/PanGestureHandler';
import PinchGestureHandler from './handlers/PinchGestureHandler';
import RotationGestureHandler from './handlers/RotationGestureHandler';
import TapGestureHandler from './handlers/TapGestureHandler';
export declare const Gestures: {
NativeViewGestureHandler: typeof NativeViewGestureHandler;
PanGestureHandler: typeof PanGestureHandler;
TapGestureHandler: typeof TapGestureHandler;
LongPressGestureHandler: typeof LongPressGestureHandler;
PinchGestureHandler: typeof PinchGestureHandler;
RotationGestureHandler: typeof RotationGestureHandler;
FlingGestureHandler: typeof FlingGestureHandler;
ManualGestureHandler: typeof ManualGestureHandler;
HoverGestureHandler: typeof HoverGestureHandler;
};
//# sourceMappingURL=Gestures.d.ts.map