export type { InfiniteScrollingProps } from './props'; /** * 滚动触发的回调类型 * * @param { number } distance 滚动距离 */ export type ScrollCallback = (distance: number) => void;