react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
14 lines • 386 B
TypeScript
export interface GestureStateManagerType {
begin: () => void;
activate: () => void;
fail: () => void;
end: () => void;
/** @internal */
handlerTag: number;
}
declare function create(handlerTag: number): GestureStateManagerType;
export declare const GestureStateManager: {
create: typeof create;
};
export {};
//# sourceMappingURL=gestureStateManager.d.ts.map