UNPKG

@flexn/shopify-flash-list

Version:

FlashList is a more performant FlatList replacement

16 lines 494 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; } export {}; //# sourceMappingURL=AutoLayoutViewNativeComponentProps.d.ts.map