Merge from vscode 0f73473c08055054f317c1c94502f7f39fdbb164 (#6892)

* Merge from vscode 0f73473c08055054f317c1c94502f7f39fdbb164

* fix tslinting
This commit is contained in:
Anthony Dresser
2019-08-22 22:07:01 -07:00
committed by GitHub
parent 1372cbaee1
commit 658cf51887
91 changed files with 1092 additions and 317 deletions

View File

@@ -45,7 +45,7 @@ export class EditDataComponent extends GridParentComponent implements OnInit, On
private refreshGridTimeoutInMs = 200;
// The timeout handle for the refresh grid task
private refreshGridTimeoutHandle: NodeJS.Timer;
private refreshGridTimeoutHandle: any;
// Optimized for the edit top 200 rows scenario, only need to retrieve the data once
// to make the scroll experience smoother

View File

@@ -16,7 +16,7 @@ export class TreeSelectionHandler {
// progressRunner: IProgressRunner;
private _lastClicked: any[];
private _clickTimer: NodeJS.Timer = undefined;
private _clickTimer: any = undefined;
// constructor(@IProgressService private _progressService: IProgressService) {

View File

@@ -83,7 +83,7 @@ export class FindWidget extends Widget implements IOverlayWidget, IHorizontalSas
private _resizeSash: Sash;
private searchTimeoutHandle: NodeJS.Timer;
private searchTimeoutHandle: any;
constructor(
tableController: ITableController,