Interface TreeItemLabel

Label describing the Tree item

interface TreeItemLabel {
    highlights?: [number, number][];
    label: string;
}

Properties

Properties

highlights?: [number, number][]

Ranges in the label to highlight. A range is defined as a tuple of two numbers where the first is the inclusive start index and the second the exclusive end index

label: string

A human-readable string describing the Tree item.