yh-react-virtuallist
Version:
yh-react-virtuallist 虚拟列表组件
9 lines (8 loc) • 380 B
TypeScript
import { AllHTMLAttributes, PropsWithChildren, RefObject } from "react";
export interface VirtualListProps extends AllHTMLAttributes<HTMLDivElement> {
scrollDom: RefObject<HTMLDivElement>;
referItemHeight: number;
renderNumber: number;
}
export declare function VirtualList(props: PropsWithChildren<VirtualListProps>): JSX.Element;
export default VirtualList;