Update onDidChangeTreeData event type, fixes #96932 (#96933)

This commit is contained in:
Rachel Macfarlane
2020-05-04 12:10:18 -07:00
parent cd49ae3a7d
commit 58945490b4
2 changed files with 2 additions and 2 deletions

View File

@@ -153,7 +153,7 @@ export class ExtHostTreeViews implements ExtHostTreeViewsShape {
}
}
type Root = null | undefined;
type Root = null | undefined | void;
type TreeData<T> = { message: boolean, element: T | Root | false };
interface TreeNode extends IDisposable {