react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
16 lines (12 loc) • 391 B
TypeScript
/* eslint-disable no-var */
export {};
declare global {
var _setGestureStateSync:
| ((handlerTag: number, state: number) => void)
| undefined;
var _setGestureStateAsync:
| ((handlerTag: number, state: number) => void)
| undefined;
// Temporary holder used to pass the Worklets UI runtime to native code.
var __RNGH_UI_WORKLET_RUNTIME_HOLDER: object | undefined;
}