diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-12-13 05:12:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-13 05:12:19 +0100 |
commit | a2ba573e77b63d2bcb5cba19fae09cebda2fc685 (patch) | |
tree | a39947b0a551c5017568b7628ca260b5c99c6213 /cli/tsc/dts/lib.deno.unstable.d.ts | |
parent | 8972ebc9cc33ef1df21c899c35006ea712f7f91f (diff) |
fix: default to `"inherit"` for `Deno.Command#spawn()`'s `stdout` & `stderr` (#17025)
Diffstat (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index d3bf8a91b..d0f1e204a 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1456,11 +1456,13 @@ declare namespace Deno { stdin?: "piped" | "inherit" | "null"; /** How `stdout` of the spawned process should be handled. * - * Defaults to `"piped"`. */ + * Defaults to `"piped"` for `output` & `outputSync`, + * and `"inherit"` for `spawn`. */ stdout?: "piped" | "inherit" | "null"; /** How `stderr` of the spawned process should be handled. * - * Defaults to "piped". */ + * Defaults to "piped" for `output` & `outputSync`, + * and `"inherit"` for `spawn`. */ stderr?: "piped" | "inherit" | "null"; /** Skips quoting and escaping of the arguments on windows. This option |