Interface TreeSelection

Representation of a tree selection.

interface TreeSelection {
    node: Readonly<SelectableTreeNode>;
    type?: SelectionType;
}

Hierarchy (view full)

Properties

Properties

node: Readonly<SelectableTreeNode>

The actual item that has been selected.

The optional tree selection type. Defaults to SelectionType.DEFAULT;