From 2068ad8dd07c7456feff181e048cb9a8be07faed Mon Sep 17 00:00:00 2001 From: Endel Dreyer Date: Wed, 10 May 2017 21:42:38 +0200 Subject: [PATCH] node: add 'stdio' to ForkOptions Documentation: https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options See `stdio` in `options` parameter. --- types/node/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/node/index.d.ts b/types/node/index.d.ts index 67f275c7b6..d9efcc3d1c 100644 --- a/types/node/index.d.ts +++ b/types/node/index.d.ts @@ -1744,6 +1744,7 @@ declare module "child_process" { execPath?: string; execArgv?: string[]; silent?: boolean; + stdio?: any[]; uid?: number; gid?: number; }