File

projects/angular/components/ui-tree-select/src/models/tree.models.ts

Extends

IBaseNode

Index

Properties

Properties

children
children: ITreeNode<T>[]
Type : ITreeNode<T>[]
Optional
interface IBaseNode<T = any> {
    key: string;
    name: string;
    data?: T;
}

export interface ITreeNode<T = any> extends IBaseNode<T> {
    children?: ITreeNode<T>[];
}

export interface IFlatNodeObject<T = any> extends IBaseNode<T> {
    hasChildren: boolean;
    level: number;
}

results matching ""

    No results matching ""