UNPKG

@shopify/flash-list

Version:

FlashList is a more performant FlatList replacement

18 lines (14 loc) 402 B
import { ReactNode } from "react"; export interface OnBlankAreaEvent { nativeEvent: { offsetStart: number; offsetEnd: number; }; } type OnBlankAreaEventHandler = (event: OnBlankAreaEvent) => void; export interface AutoLayoutViewNativeComponentProps { children?: ReactNode; onBlankAreaEvent: OnBlankAreaEventHandler; enableInstrumentation: boolean; disableAutoLayout?: boolean; }