Remove unneeded constructor from TreeItem2

This commit is contained in:
Alex Ross 2020-11-12 17:48:21 +01:00
parent 0286c4f793
commit 561501492a

View file

@ -1009,12 +1009,6 @@ declare module 'vscode' {
* Content to be shown when you hover over the tree item.
*/
tooltip?: string | MarkdownString | /* for compilation */ any;
/**
* @param label Label describing this item
* @param collapsibleState [TreeItemCollapsibleState](#TreeItemCollapsibleState) of the tree item. Default is [TreeItemCollapsibleState.None](#TreeItemCollapsibleState.None)
*/
constructor(label: TreeItemLabel, collapsibleState?: TreeItemCollapsibleState);
}
export interface TreeView<T> extends Disposable {