summaryrefslogtreecommitdiff
path: root/cli/dts
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-05-18 07:32:45 +0200
committerGitHub <noreply@github.com>2022-05-18 07:32:45 +0200
commita151092aa144054c0d088843e306e51430ad4bba (patch)
tree7c73c6f914929a0e7e1d961d7453462103ee506a /cli/dts
parent9a85a95c435968e5bdf6e71192be3ed239fd2205 (diff)
feat: return a signal string instead number on ChildStatus (#14643)
Diffstat (limited to 'cli/dts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts2
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 d5797eb83..bb93eac8d 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: number | null;
+ signal: string | null;
};
export interface SpawnOutput<T extends SpawnOptions> {