Added execSync to child_process

This commit is contained in:
nojaf
2015-02-27 07:51:31 +01:00
parent 3882d337bb
commit 79509620fd
+13
View File
@@ -650,6 +650,19 @@ declare module "child_process" {
env?: any;
encoding?: string;
}): ChildProcess;
export function execSync(command: string, options?: {
cwd?: string;
input?: string|Buffer;
stdio?: any;
env?: any;
uid?:number;
gid?:number;
timeout?: number;
maxBuffer?: number;
killSignal?: string;
maxBuffer?:number;
encoding?: string;
});
}
declare module "url" {