Skip to content

Commit

Permalink
Correct execFileSync to use execSyncOpts options
Browse files Browse the repository at this point in the history
  • Loading branch information
skovhus committed Nov 16, 2016
1 parent b88c0e4 commit 8483b9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ declare module "child_process" {

declare function execFileSync(
command: string,
argsOrOptions?: Array<string> | child_process$execFileOpts,
options?: child_process$execFileOpts
argsOrOptions?: Array<string> | child_process$execSyncOpts,
options?: child_process$execSyncOpts
): Buffer | string;

declare function fork(
Expand Down

0 comments on commit 8483b9f

Please sign in to comment.