Merge pull request #6245 from rschuchart/execfile-maxbuffer

fixed type of maxBuffer option to execFile
This commit is contained in:
Masahiro Wakame
2015-10-13 02:32:33 +09:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -860,7 +860,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?: {