react-native-gesture-handler
Version:
Experimental implementation of a new declarative API for gesture handling in react-native
7 lines (6 loc) • 325 B
TypeScript
import * as React from 'react';
import GenericTouchable, { GenericTouchableProps } from './GenericTouchable';
declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent<GenericTouchableProps & {
children?: React.ReactNode;
} & React.RefAttributes<GenericTouchable>>;
export default TouchableWithoutFeedback;