Fixes #11304: Update node.d.ts for extension to 4.x version to be in line with normal extension development

This commit is contained in:
Dirk Baeumer
2016-08-31 12:27:26 +02:00
parent e55a58c4fe
commit b7ab0e8c90
6 changed files with 4034 additions and 445 deletions

View File

@@ -28,7 +28,7 @@ export function activateColorDecorations(decoratorProvider: (uri: string) => The
let colorsDecorationType = window.createTextEditorDecorationType(decorationType);
disposables.push(colorsDecorationType);
let pendingUpdateRequests : { [key:string]:number; } = {};
let pendingUpdateRequests : { [key:string]: NodeJS.Timer; } = {};
// we care about all visible editors
window.visibleTextEditors.forEach(editor => {