mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
fix(cli/dts): change ChildStatus.signal
from string
to Deno.Signal
(#14690)
This commit is contained in:
parent
1fcecb6789
commit
75315dfe00
1 changed files with 1 additions and 1 deletions
2
cli/dts/lib.deno.unstable.d.ts
vendored
2
cli/dts/lib.deno.unstable.d.ts
vendored
|
@ -1117,7 +1117,7 @@ declare namespace Deno {
|
|||
| {
|
||||
success: false;
|
||||
code: number;
|
||||
signal: string | null;
|
||||
signal: Signal | null;
|
||||
};
|
||||
|
||||
export interface SpawnOutput<T extends SpawnOptions> {
|
||||
|
|
Loading…
Reference in a new issue