ngx-tree-select
Version:
Angular component for select with tree items.
17 lines (16 loc) • 461 B
TypeScript
import { SelectService } from '../services/select.service';
export declare class SelectableItem {
id: string;
text: string;
data: any;
svc: SelectService;
_selected: boolean;
children?: SelectableItem[];
isOpen: boolean;
matchFilter: boolean;
isVisible: boolean;
constructor(id: string, text: string, data: any, svc: SelectService);
readonly hasChild: boolean;
readonly checked: boolean;
selected: boolean;
}