Type alias AsyncTreeProps<T>

AsyncTreeProps<T>: TreeViewProps & Partial<{
    createChildren: ((parent?: T) => Promise<T[]>);
    displayExpr: string;
    hasChildrenExpr: string;
    keyExpr: string;
    parentExpr: string;
    rootValue: any;
    setExpanded: any;
    treeItemProps: TreeItemProps;
}>

Type Parameters

  • T = any

Generated using TypeDoc