diff options
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 062ec79e7..2904c14f3 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1442,7 +1442,7 @@ declare namespace Deno { /** * Executes a subprocess, waiting for it to finish and * collecting all of its output. - * The stdio options are ignored. + * Will throw an error if `stdin: "piped"` is passed. * * ```ts * const { status, stdout, stderr } = await Deno.spawn(Deno.execPath(), { @@ -1464,7 +1464,7 @@ declare namespace Deno { /** * Synchronously executes a subprocess, waiting for it to finish and * collecting all of its output. - * The stdio options are ignored. + * Will throw an error if `stdin: "piped"` is passed. * * ```ts * const { status, stdout, stderr } = Deno.spawnSync(Deno.execPath(), { |