1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

doc(unstable): mention that signal input isn't supported in spawnSync (#15889)

This commit is contained in:
Asher Gomez 2022-09-14 16:37:05 +10:00 committed by GitHub
parent b26d0b8a03
commit 6a9acc8142
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1362,7 +1362,7 @@ declare namespace Deno {
/** /**
* An AbortSignal that allows closing the process using the corresponding * An AbortSignal that allows closing the process using the corresponding
* AbortController by sending the process a SIGTERM signal. * AbortController by sending the process a SIGTERM signal.
* Not Supported by execSync. * Not supported in spawnSync.
*/ */
signal?: AbortSignal; signal?: AbortSignal;