@scrolia/react-native
Version:
A headless scrollbar component
13 lines • 339 B
TypeScript
import * as React from "react";
import { FlatList, FlatListProps } from "react-native";
/** Props for the `ListY` component. */
type ListYProps<T> = FlatListProps<T> & {
ref?: React.Ref<FlatList>;
};
/**
* Vertical list component.
*
* Use `ContentY` for generic content.
*/
export { type ListYProps };
//# sourceMappingURL=y.d.ts.map