/** * @author 田尘殇Sean(sean.snow@live.com) create at 2017/11/4 */ import { StyleProp, ViewStyle } from 'react-native'; export default interface Props { cells: Array; renderCell?: (data: { cell: any; cellId: number; }) => void; autoWidth?: boolean; cols?: number; containerStyle?: StyleProp; horizontalSpacing?: number; verticalSpacing?: number; style?: StyleProp; }