(id: string)
| 46 | } |
| 47 | |
| 48 | function createTreeItemElement(id: string): HTMLElement { |
| 49 | const element = document.createElement('div'); |
| 50 | element.role = 'treeitem'; |
| 51 | element.id = id; |
| 52 | return element; |
| 53 | } |
| 54 | |
| 55 | interface TestTreeItem<V> { |
| 56 | value: V; |