mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 11:57:33 +08:00
Merge pull request #3862 from ericlu88/node
Expose execFileSync in node typing
This commit is contained in:
12
node/node.d.ts
vendored
12
node/node.d.ts
vendored
@@ -697,6 +697,18 @@ declare module "child_process" {
|
||||
killSignal?: string;
|
||||
encoding?: string;
|
||||
}): ChildProcess;
|
||||
export function execFileSync(command: string, args?: 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