UNPKG

@samotics/ngx-treeview

Version:

An Angular treeview component with checkbox

10 lines (9 loc) 334 B
import { TreeviewItem } from './treeview-item'; import { TreeviewConfig } from './treeview-config'; export interface TreeviewHeaderTemplateContext { config: TreeviewConfig; item: TreeviewItem; onCollapseExpand: () => void; onCheckedChange: (checked: boolean) => void; onFilterTextChange: (text: string) => void; }