mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-10 09:10:38 +08:00
See https://github.com/facebook/react-native/blob/master/Libraries/Lists/SectionList.js#L187 ``` export type Props<SectionT> = RequiredProps<SectionT> & OptionalProps<SectionT> & VirtualizedSectionListProps<SectionT>; ``` See https://github.com/facebook/react-native/blob/master/Libraries/Lists/VirtualizedSectionList.js#L119 ``` export type Props<SectionT> = RequiredProps<SectionT> & OptionalProps<SectionT> & VirtualizedListProps; ``` See https://github.com/facebook/react-native/blob/master/Libraries/Lists/VirtualizedList.js#L54 ``` // TODO: Conflicts with the optional `renderItem` in // `VirtualizedSectionList`'s props. renderItem: $FlowFixMe<renderItemType>, ```