#76442 fix implicit any

This commit is contained in:
Sandeep Somavarapu
2019-07-09 12:28:00 +02:00
parent 66dc7a11b7
commit 3b9d26ded9
23 changed files with 103 additions and 95 deletions

View File

@@ -205,7 +205,7 @@ class TreeViewDataProvider implements ITreeViewDataProvider {
if (current) {
const properties = distinct([...Object.keys(current), ...Object.keys(treeItem)]);
for (const property of properties) {
current[property] = treeItem[property];
(<any>current)[property] = (<any>treeItem)[property];
}
}
}