diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-05-18 07:32:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 07:32:45 +0200 |
commit | a151092aa144054c0d088843e306e51430ad4bba (patch) | |
tree | 7c73c6f914929a0e7e1d961d7453462103ee506a /cli/dts | |
parent | 9a85a95c435968e5bdf6e71192be3ed239fd2205 (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.ts | 2 |
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> { |