UNPKG

@idui/react-tree

Version:
6 lines (5 loc) 301 B
import { TreeProps } from './types'; declare function Tree<NodeObjectType extends { childNodes?: NodeObjectType[]; }, LeafType>({ nodes, search, filterHighlighted, highlightClassName, idKey, searchBy, renderLeaf, ...props }: TreeProps<NodeObjectType, LeafType>): JSX.Element; export default Tree;