UNPKG

react-native-gesture-handler

Version:

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

9 lines (8 loc) 435 B
import * as React from 'react'; import GenericTouchable from './GenericTouchable'; import type { GenericTouchableProps } from './GenericTouchableProps'; export type TouchableWithoutFeedbackProps = GenericTouchableProps; declare const TouchableWithoutFeedback: React.ForwardRefExoticComponent<GenericTouchableProps & { children?: React.ReactNode; } & React.RefAttributes<GenericTouchable>>; export default TouchableWithoutFeedback;