minishouyin/node_modules/rc-virtual-list/lib/Item.d.ts
2025-11-12 11:35:57 +08:00

7 lines
272 B
TypeScript

import * as React from 'react';
export interface ItemProps {
children: React.ReactElement;
setRef: (element: HTMLElement) => void;
}
export declare function Item({ children, setRef }: ItemProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;