UNPKG

@scrolia/react-native

Version:
13 lines 341 B
import * as React from "react"; import { FlatList, FlatListProps } from "react-native"; /** Props for the `ListX` component. */ type ListXProps<T> = FlatListProps<T> & { ref?: React.Ref<FlatList>; }; /** * Horizontal list component. * * Use `ContentX` for generic content. */ export { type ListXProps }; //# sourceMappingURL=x.d.ts.map