@scrolia/react-native
Version:
A headless scrollbar component
13 lines • 341 B
TypeScript
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