UNPKG

mui-draggable-treeview

Version:

React Treeview component built on Material-UI with drag and drop features

7 lines (6 loc) 154 B
import { TreeNode } from "./treeNode"; export interface DraggedTreeNode { parentNode: TreeNode | null; node: TreeNode; depth: number; }