Interface TreeElement

interface TreeElement {
    id?: string | number;
    visible?: boolean;
    open?(): any;
    render(host): ReactNode;
}

Hierarchy (view full)

Properties

Methods

Properties

id?: string | number

default: parent id + position among siblings

visible?: boolean

default: true

Methods