mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
19 lines (18 loc) • 720 B
TypeScript
import { ComponentChildren } from "preact";
export type BaseTreeItemProps = {
label?: string;
selected?: boolean;
children?: ComponentChildren;
onCollapse?: () => void;
onExpand?: () => void;
onClick?: () => void;
onDrop?: (draggingItem?: any) => void;
myDraggingItem?: any;
draggable?: boolean;
expanded?: boolean;
expandable?: boolean;
outlined?: boolean;
IconComponent?: any;
};
declare const BaseTreeItem: ({ label, children, selected, onCollapse, onExpand, onClick, onDrop, myDraggingItem, draggable, expanded: expandedProp, expandable, outlined, IconComponent }: BaseTreeItemProps) => import("preact").JSX.Element;
export default BaseTreeItem;