Merge pull request #3862 from ericlu88/node

Expose execFileSync in node typing
This commit is contained in:
Masahiro Wakame
2015-03-15 23:03:06 +09:00

12
node/node.d.ts vendored
View File

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