@huunguyen312/flash-list
Version:
FlashList is a more performant FlatList replacement
13 lines • 522 B
TypeScript
/**
* This file comes courtsey of steuerbot and their work on react-native-bidirectional-flatlist. Huge thanks for helping
* solve this problem with fling!
* */
import type { ReactNode } from "react";
import { ViewStyle } from "react-native";
interface BidirectionalFlatlistProps {
style: ViewStyle;
children: ReactNode;
}
declare const BidirectionalFlatlist: import("react-native").HostComponent<BidirectionalFlatlistProps>;
export { BidirectionalFlatlist };
//# sourceMappingURL=BidirectionalFlatlist.d.ts.map