#49511 Access selected elements

This commit is contained in:
Sandeep Somavarapu
2018-05-15 16:53:50 +02:00
parent 43ac4e244f
commit 0b77964b6a
5 changed files with 26 additions and 3 deletions

View File

@@ -576,6 +576,7 @@ export interface ExtHostDocumentsAndEditorsShape {
export interface ExtHostTreeViewsShape {
$getChildren(treeViewId: string, treeItemHandle?: string): TPromise<ITreeItem[]>;
$setExpanded(treeViewId: string, treeItemHandle: string, expanded: boolean): void;
$setSelection(treeViewId: string, treeItemHandles: string[]): void;
}
export interface ExtHostWorkspaceShape {