UNPKG

react-native-inline-keyboard

Version:
19 lines (18 loc) 580 B
import React from 'react'; import { StyleProp, TouchableOpacityProps, ViewStyle } from 'react-native'; interface TVTouchableFeedbackProps extends TouchableOpacityProps { focusStyles?: StyleProp<ViewStyle>; } interface TVTouchableFeedbackState { focused: boolean; } export default class TVTouchableFeedback extends React.Component<TVTouchableFeedbackProps, TVTouchableFeedbackState> { state: { focused: boolean; }; onFocus: () => void; onBlur: () => void; onPress: (event: any) => void; render(): JSX.Element; } export {};