react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
10 lines (9 loc) • 441 B
TypeScript
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;