-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move params and metrics tree to mixed type * remove get param or metric methods where possible * rework tree data type * improve test * improve test variable names * add create tree view wrapper Co-authored-by: rogermparent <rogermparent@gmail.com>
- Loading branch information
1 parent
5ba2e56
commit 08cc3b3
Showing
3 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { TreeDataProvider, TreeView, window } from 'vscode' | ||
|
||
export const createTreeView = <T>( | ||
name: string, | ||
treeDataProvider: TreeDataProvider<string | T> | ||
): TreeView<string | T> => | ||
window.createTreeView<string | T>(name, { | ||
canSelectMany: true, | ||
showCollapseAll: true, | ||
treeDataProvider | ||
}) |