UNPKG

react-native-navigation-drilldown

Version:
11 lines (10 loc) 431 B
import * as React from 'react'; import { ItemViewProps } from './types'; export default class ItemView extends React.PureComponent<ItemViewProps> { onPress: () => void; renderContent: () => React.ReactElement<any> | null; renderTitle: () => React.ReactElement<any> | null; renderLeftIcon: () => React.ReactElement<any> | null; renderRightIcon: () => React.ReactElement<any> | null; render(): JSX.Element; }