Skip to content

Commit

Permalink
Move TreeView message API to stable
Browse files Browse the repository at this point in the history
Fixes #80401
  • Loading branch information
alexr00 committed Sep 17, 2019
1 parent 703480e commit f8c9cc7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 5 additions & 0 deletions src/vs/vscode.d.ts
Expand Up @@ -7014,6 +7014,11 @@ declare module 'vscode' {
*/
readonly onDidChangeVisibility: Event<TreeViewVisibilityChangeEvent>;

/**
* An optional human-readable message that will be rendered in the view.
*/
message?: string;

/**
* Reveals the given element in the tree view.
* If the tree view is not visible then the tree view is shown and element is revealed.
Expand Down
6 changes: 0 additions & 6 deletions src/vs/vscode.proposed.d.ts
Expand Up @@ -820,12 +820,6 @@ declare module 'vscode' {
//#region Tree View

export interface TreeView<T> {

/**
* An optional human-readable message that will be rendered in the view.
*/
message?: string;

/**
* The name of the tree view. It is set from the extension package.json and can be changed later.
*/
Expand Down

0 comments on commit f8c9cc7

Please sign in to comment.