UNPKG

antd-mobile

Version:

<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />

9 lines (8 loc) 288 B
import { FC } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type InfiniteScrollProps = { loadMore: () => Promise<void>; hasMore: boolean; threshold?: number; } & NativeProps; export declare const InfiniteScroll: FC<InfiniteScrollProps>;