Deno.CommandOutput

The interface returned from calling Deno.Command.output or Deno.Command.outputSync which represents the result of spawning the child process.

interface CommandOutput extends CommandStatus {
readonly stderr: Uint8Array;
readonly stdout: Uint8Array;
}

§Extends

§Properties

§
readonly stderr: Uint8Array
[src]

The buffered output from the child process' stderr.

§
readonly stdout: Uint8Array
[src]

The buffered output from the child process' stdout.