Changed code formatting after tslint error.

This commit is contained in:
Alex Chugaev
2017-07-06 21:54:46 +03:00
committed by GitHub
parent f2ab19de45
commit 65162c8223

View File

@@ -1773,7 +1773,7 @@ declare module "child_process" {
import * as events from "events";
import * as stream from "stream";
import * as net from "net";
export interface ChildProcess extends events.EventEmitter {
stdin: stream.Writable;
stdout: stream.Readable;
@@ -1842,7 +1842,7 @@ declare module "child_process" {
export interface MessageOptions {
keepOpen: boolean;
}
export interface SpawnOptions {
cwd?: string;
env?: any;
@@ -1852,6 +1852,7 @@ declare module "child_process" {
gid?: number;
shell?: boolean | string;
}
export function spawn(command: string, args?: string[], options?: SpawnOptions): ChildProcess;
export interface ExecOptions {