tenacity-ui
Version:
tenacity ui component library
18 lines (17 loc) • 456 B
TypeScript
/**
* @name ScrollList
* @author Lester
* @date 2021-06-02 14:07
*/
import React, { MutableRefObject } from 'react';
interface ScrollListProps {
scrollListRef?: MutableRefObject<any>;
onLoad: () => Promise<any>;
onRefresh?: () => void;
backgroundColor?: string;
loaded: boolean;
className?: string;
hideFooterTips?: boolean;
}
declare const ScrollList: React.FC<ScrollListProps>;
export default ScrollList;