File

src/treeview/tree-node.types.ts

Index

Properties

Indexable

[key: string]: any

Properties

active
active: boolean
Type : boolean
Optional
children
children: Node[]
Type : Node[]
Optional
disabled
disabled: boolean
Type : boolean
Optional
expanded
expanded: boolean
Type : boolean
Optional
icon
icon: string | TemplateRef<any>
Type : string | TemplateRef<any>
Optional
id
id: string
Type : string
Optional
label
label: string | TemplateRef<any>
Type : string | TemplateRef<any>
selected
selected: boolean
Type : boolean
Optional
value
value: any
Type : any
Optional
import { TemplateRef } from "@angular/core";

export interface Node {
	label: string | TemplateRef<any>;
	value?: any;
	id?: string;
	active?: boolean;
	disabled?: boolean;
	expanded?: boolean;
	selected?: boolean;
	icon?: string | TemplateRef<any>;
	children?: Node[];
	[key: string]: any;
}

results matching ""

    No results matching ""