diff options
author | Simon Lecoq <22963968+lowlighter@users.noreply.github.com> | 2022-05-21 02:04:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-21 02:04:18 +0200 |
commit | 75315dfe006b9a5cf6fa92e361b62ca3925c631a (patch) | |
tree | eeea655d44a6098e8fb88ba65169b41098a15a7c /cli/dts/lib.deno.unstable.d.ts | |
parent | 1fcecb6789c3f111bc1554766ba9347afcfd02dc (diff) |
fix(cli/dts): change `ChildStatus.signal` from `string` to `Deno.Signal` (#14690)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-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 e21c2afce..0ed27c5d5 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<T extends SpawnOptions> { |