UNPKG

682 BTypeScriptView Raw
1import * as React from 'react';
2import { TouchableNativeFeedback, TouchableWithoutFeedbackProps } from 'react-native';
3declare type Props = TouchableWithoutFeedbackProps & {
4 pressInDelay: number;
5 background: any;
6};
7export default class TouchableNativeFeedbackSafe extends React.Component<Props> {
8 static SelectableBackground: (() => {}) | typeof TouchableNativeFeedback.SelectableBackground;
9 static SelectableBackgroundBorderless: (() => {}) | typeof TouchableNativeFeedback.SelectableBackgroundBorderless;
10 static Ripple: ((color: string, borderless?: boolean | undefined) => {}) | typeof TouchableNativeFeedback.Ripple;
11 render(): JSX.Element;
12}
13export {};
14
\No newline at end of file