diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2022-09-14 16:37:05 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 08:37:05 +0200 |
commit | 6a9acc81420a5e87e61de48b25af85d961e35730 (patch) | |
tree | e1ea0231287a8766cb1b73518c96a27b01e90537 | |
parent | b26d0b8a03e0ee616a42d8903fa3db6e9b255802 (diff) |
doc(unstable): mention that `signal` input isn't supported in `spawnSync` (#15889)
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 2512eb806..4bca9438e 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1362,7 +1362,7 @@ declare namespace Deno { /** * An AbortSignal that allows closing the process using the corresponding * AbortController by sending the process a SIGTERM signal. - * Not Supported by execSync. + * Not supported in spawnSync. */ signal?: AbortSignal; |