interface Deno.CommandOutput
extends CommandStatus
The interface returned from calling Deno.Command.output or
Deno.Command.outputSync which represents the result of spawning the
child process.
Properties Jump to heading
readonly
Jump to headingstdout: Uint8ArrayThe buffered output from the child process' stdout.
readonly
Jump to headingstderr: Uint8ArrayThe buffered output from the child process' stderr.