UNPKG

@scrolia/react-native-flash-list

Version:

A set of list components for Scrolia React Native

14 lines 527 B
import { FlashListProps, FlashListRef } from "@shopify/flash-list"; import * as React from "react"; /** Props for the `FlashListY` component. */ type FlashListYProps<T> = FlashListProps<T> & { ref?: React.Ref<FlashListRef<T>>; }; /** * Vertical list component based on `@shopify/flash-list`. * * **This component requires `@shopify/flash-list` to be installed.** */ declare const FlashListY: <T>(props: FlashListYProps<T>) => React.JSX.Element; export { FlashListY, type FlashListYProps }; //# sourceMappingURL=y.d.ts.map