| 11 | import { materialStyles } from "./styles"; |
| 12 | |
| 13 | export interface Node { |
| 14 | label?: string; |
| 15 | children?: Array<Node>; |
| 16 | expanded?: boolean; |
| 17 | topLevel?: boolean; |
| 18 | } |
| 19 | |
| 20 | export class TreeNode extends LitElement { |
| 21 | static get componentName() { |
no outgoing calls
no test coverage detected