UNPKG

react-native-gesture-handler

Version:

Experimental implementation of a new declarative API for gesture handling in react-native

10 lines (9 loc) 441 B
import type { TouchableNativeFeedbackProps as RNTouchableNativeFeedbackProps } from 'react-native'; import type { GenericTouchableProps } from './GenericTouchableProps'; export type TouchableNativeFeedbackExtraProps = { borderless?: boolean; rippleColor?: number | null; rippleRadius?: number | null; foreground?: boolean; }; export type TouchableNativeFeedbackProps = RNTouchableNativeFeedbackProps & GenericTouchableProps;