mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-28 12:43:06 +08:00
Merge pull request #3759 from nojaf/master
Added execSync to child_process
This commit is contained in:
Vendored
+12
@@ -650,6 +650,18 @@ 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;
|
||||
encoding?: string;
|
||||
}): ChildProcess;
|
||||
}
|
||||
|
||||
declare module "url" {
|
||||
|
||||
Reference in New Issue
Block a user