react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
30 lines (27 loc) • 1.15 kB
text/typescript
import type { TurboModule } from 'react-native';
import { TurboModuleRegistry } from 'react-native';
import type { Double } from 'react-native/Libraries/Types/CodegenTypes';
export interface Spec extends TurboModule {
createGestureHandler: (
handlerName: string,
handlerTag: Double,
// Record<> is not supported by codegen
// eslint-disable-next-line @typescript-eslint/ban-types
config: Object
) => void;
attachGestureHandler: (
handlerTag: Double,
newView: Double,
actionType: Double
) => void;
// eslint-disable-next-line @typescript-eslint/ban-types
setGestureHandlerConfig: (handlerTag: Double, newConfig: Object) => void;
// eslint-disable-next-line @typescript-eslint/ban-types
updateGestureHandlerConfig: (handlerTag: Double, newConfig: Object) => void;
// eslint-disable-next-line @typescript-eslint/ban-types
configureRelations: (handlerTag: Double, relations: Object) => void;
dropGestureHandler: (handlerTag: Double) => void;
flushOperations: () => void;
installUIRuntimeBindings: () => boolean;
}
export default TurboModuleRegistry.getEnforcing<Spec>('RNGestureHandlerModule');