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

    Тип, описывающий узел выпадающего списка.

    Type Parameters

    • T