UNPKG

react-native-gesture-handler

Version:

Declarative API exposing native platform touch and gesture system to React Native

12 lines (11 loc) 292 B
export interface GestureStateManagerType { begin: () => void; activate: () => void; fail: () => void; end: () => void; } declare function create(handlerTag: number): GestureStateManagerType; export declare const GestureStateManager: { create: typeof create; }; export {};