From 6c558e847089950fdbe5d1f6df89778cf1891b6b Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 14 Sep 2022 16:37:05 +1000 Subject: [PATCH] doc(unstable): mention that `signal` input isn't supported in `spawnSync` (#15889) --- cli/dts/lib.deno.unstable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 2512eb8069..4bca9438e1 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;