From 183ca9d7fb64ec9b7ffb49451920e38c6c181b52 Mon Sep 17 00:00:00 2001 From: Louis De Bevere Date: Sun, 14 Feb 2016 20:05:23 +0100 Subject: [PATCH] Improves nodejs typings for Process & ChildProcess --- node/node.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node/node.d.ts b/node/node.d.ts index 7179464d1a..3f55506071 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -216,6 +216,7 @@ declare module NodeJS { stderr: WritableStream; stdin: ReadableStream; argv: string[]; + execArgv: string[]; execPath: string; abort(): void; chdir(directory: string): void; @@ -916,6 +917,7 @@ declare module "child_process" { stdin: stream.Writable; stdout: stream.Readable; stderr: stream.Readable; + stdio: (stream.Readable|stream.Writable)[]; pid: number; kill(signal?: string): void; send(message: any, sendHandle?: any): void;