File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7897,7 +7897,7 @@ declare module 'vscode' {
7897
7897
* This will trigger the view to update the changed element/root and its children recursively (if shown).
7898
7898
* To signal that root has changed, do not pass any argument or pass `undefined` or `null`.
7899
7899
*/
7900
- onDidChangeTreeData ?: Event < T | undefined | null > ;
7900
+ onDidChangeTreeData ?: Event < T | undefined | null | void > ;
7901
7901
7902
7902
/**
7903
7903
* Get [TreeItem](#TreeItem) representation of the `element`
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ export class ExtHostTreeViews implements ExtHostTreeViewsShape {
153
153
}
154
154
}
155
155
156
- type Root = null | undefined ;
156
+ type Root = null | undefined | void ;
157
157
type TreeData < T > = { message : boolean , element : T | Root | false } ;
158
158
159
159
interface TreeNode extends IDisposable {
You can’t perform that action at this time.
0 commit comments