fixed type of maxBuffer option to execFile

This commit is contained in:
marvin
2015-10-11 12:16:55 +02:00
parent 3fc1377ce2
commit 2708ec7029
4 changed files with 4 additions and 4 deletions

2
node/node-0.10.d.ts vendored
View File

@@ -720,7 +720,7 @@ declare module "child_process" {
env?: any;
encoding?: string;
timeout?: number;
maxBuffer?: string;
maxBuffer?: number;
killSignal?: string;
}, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess;
export function fork(modulePath: string, args?: string[], options?: {