debt - bump node.d.ts dependency in extensions to 12.x (part of #82514)

This commit is contained in:
Benjamin Pasero
2019-10-28 08:11:47 +01:00
parent ba40bd1643
commit ca22de4b17
55 changed files with 151 additions and 151 deletions

View File

@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
import * as cp from 'child_process';
import { NodeStringDecoder, StringDecoder } from 'string_decoder';
import { StringDecoder } from 'string_decoder';
import * as vscode from 'vscode';
@@ -21,7 +21,7 @@ const enum Setting {
}
export class LineDecoder {
private stringDecoder: NodeStringDecoder;
private stringDecoder: StringDecoder;
private remaining: string | null;
constructor(encoding: string = 'utf8') {