From 75315dfe006b9a5cf6fa92e361b62ca3925c631a Mon Sep 17 00:00:00 2001 From: Simon Lecoq <22963968+lowlighter@users.noreply.github.com> Date: Sat, 21 May 2022 02:04:18 +0200 Subject: [PATCH] fix(cli/dts): change `ChildStatus.signal` from `string` to `Deno.Signal` (#14690) --- 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 e21c2afce4..0ed27c5d51 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1117,7 +1117,7 @@ declare namespace Deno { | { success: false; code: number; - signal: string | null; + signal: Signal | null; }; export interface SpawnOutput {