From ff329e2d527b92e7e045897e9f1c1f80fc94fcb8 Mon Sep 17 00:00:00 2001 From: Rychu Date: Sun, 1 Oct 2023 18:46:29 +0200 Subject: [PATCH] Windows note for Signal in CommandStatus --- cli/tsc/dts/lib.deno.ns.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 2386cf10f5..7bf76bb013 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -4389,7 +4389,7 @@ declare namespace Deno { success: boolean; /** The exit code of the child process. */ code: number; - /** The signal associated with the child process. */ + /** The signal associated with the child process. This field is `null` on Windows. */ signal: Signal | null; }