Interface TreeNodeInterface<T>

interface TreeNodeInterface {
    caption: string;
    children?: TreeNodeInterface<T>[];
    expand?: boolean;
    isLeaf?: boolean;
    key: string;
    label?: string;
    level?: number;
    name?: string;
    parent?: TreeNodeInterface<T>;
    raw: T;
    title?: string;
    value?: number;
}

Type Parameters

  • T

Properties

caption: string

The member label for tree node

children?: TreeNodeInterface<T>[]
expand?: boolean
isLeaf?: boolean
key: string

The memebr key (id) for tree node

label?: string

Deprecated

use caption caption

level?: number
name?: string

Deprecated

use caption

parent?: TreeNodeInterface<T>
raw: T
title?: string

Deprecated

use caption

value?: number

Generated using TypeDoc