summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2022-04-24 16:21:22 +0100
committerGitHub <noreply@github.com>2022-04-24 17:21:22 +0200
commite9041b9edc371f2cbd41a354591b5663f2bb4c84 (patch)
tree243140b739556cfcbf85baa2c0ec1cb058f65975 /cli/dts/lib.deno.unstable.d.ts
parent4b7d306a198d020ce2b6fa1c758c71714bfd036c (diff)
fix(runtime/js/spawn): Pass stdio options for spawn() and spawnSync() (#14358)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts4
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(), {