UNPKG

@aurelia-mdc-web/tree-view

Version:

Wrapper for Material Components Web Tree View

17 lines (16 loc) 486 B
import { ViewSlot, ViewFactory, View, Container } from 'aurelia-framework'; export declare class TreeNode { private element; private container; constructor(element: Element, container: Container); viewSlot: ViewSlot; view: View; factory: ViewFactory; rootBindingContext: Record<string, unknown>; built: boolean; bind(bindingContext: Record<string, unknown>): void; attached(): void; detached(): void; unbind(): void; private build; }