@shopify/flash-list
Version:
FlashList is a more performant FlatList replacement
18 lines (14 loc) • 402 B
text/typescript
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;
}