From 2a5047b298176cf931da0111bd0af12d6df3c00a Mon Sep 17 00:00:00 2001 From: Eric Lu Date: Fri, 13 Mar 2015 10:22:56 -0700 Subject: [PATCH] Expose execFileSync in node typing --- node/node.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/node/node.d.ts b/node/node.d.ts index 0ca514e9e8..999ca9a0a3 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -697,6 +697,18 @@ declare module "child_process" { killSignal?: string; encoding?: string; }): ChildProcess; + export function execFileSync(command: string, args?: string[], options?: { + cwd?: string; + input?: string|Buffer; + stdio?: any; + env?: any; + uid?: number; + gid?: number; + timeout?: number; + maxBuffer?: number; + killSignal?: string; + encoding?: string; + }): ChildProcess; } declare module "url" {