1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00

Windows note for Signal in CommandStatus

This commit is contained in:
Rychu 2023-10-01 18:46:29 +02:00 committed by GitHub
parent 8d24be1a59
commit ff329e2d52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4389,7 +4389,7 @@ declare namespace Deno {
success: boolean;
/** The exit code of the child process. */
code: number;
/** The signal associated with the child process. */
/** The signal associated with the child process. This field is `null` on Windows. */
signal: Signal | null;
}