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" {