@tarojsx/library
Version:
Taro3 library
7 lines (6 loc) • 333 B
TypeScript
import { FixedSizeTreeProps as TreeProps } from 'react-vtree';
import { OuterScrollViewProps } from '../react-window/useOuterScrollView';
export interface FixedSizeTreeProps<T> extends TreeProps<T> {
outerElementProps?: OuterScrollViewProps;
}
export declare function FixedSizeTree<T>(props: FixedSizeTreeProps<T>): JSX.Element;