DropDownTreeNode<T>: {
    children: DropDownTreeNode<T>[];
    displayName: string;
    hasDivider?: boolean;
    key: string;
} & ({
    view: SUBTREE | PLAIN;
} | {
    isDisabled?: (() => boolean);
    onDeselect?: ((value: T) => void);
    onSelect: ((value: T) => void);
    tooltip?: string;
    value: T;
    view: SIMPLE;
})

Type Parameters

  • T