@shopify/flash-list
Version:
FlashList is a more performant FlatList replacement
16 lines • 502 B
TypeScript
import { ReactNode } from "react";
export interface OnBlankAreaEvent {
nativeEvent: {
offsetStart: number;
offsetEnd: number;
};
}
declare type OnBlankAreaEventHandler = (event: OnBlankAreaEvent) => void;
export interface AutoLayoutViewNativeComponentProps {
children?: ReactNode;
onBlankAreaEvent: OnBlankAreaEventHandler;
enableInstrumentation: boolean;
disableAutoLayout?: boolean;
}
export {};
//# sourceMappingURL=AutoLayoutViewNativeComponentProps.d.ts.map