Fixed line terminators

This commit is contained in:
Erich Gamma
2016-02-19 18:26:28 +01:00
parent eb0c677534
commit 282ad07346
4 changed files with 83 additions and 1 deletions

View File

@@ -648,7 +648,7 @@ declare module "child_process" {
maxBuffer?: number;
killSignal?: string;
}, callback: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess;
export function exec(command: string, callback: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess;
export function exec(command: string, callback?: (error: Error, stdout: Buffer, stderr: Buffer) =>void ): ChildProcess;
export function execFile(file: string, args: string[], options: {
cwd?: string;
stdio?: any;