0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 13:49:37 -04:00

fix(cli/dts): change ChildStatus.signal from string to Deno.Signal (#14690)

This commit is contained in:
Simon Lecoq 2022-05-21 02:04:18 +02:00 committed by Kitson Kelly
parent ca44586a18
commit 8b50cd07c2
No known key found for this signature in database
GPG key ID: 2D87CFF11B51960A

View file

@ -1117,7 +1117,7 @@ declare namespace Deno {
| {
success: false;
code: number;
signal: string | null;
signal: Signal | null;
};
export interface SpawnOutput<T extends SpawnOptions> {