1
0
Fork 0
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:
Simon Lecoq 2022-05-21 02:04:18 +02:00 committed by GitHub
parent 1fcecb6789
commit 75315dfe00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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> {