Deno.CommandStatus

interface CommandStatus {
code: number;
signal: Signal | null;
success: boolean;
}

§Properties

§
code: number
[src]

The exit code of the child process.

§
signal: Signal | null
[src]

The signal associated with the child process.

§
success: boolean
[src]

If the child process exits with a 0 status code, success will be set to true, otherwise false.