deno.com

interface Deno.CommandOutput

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

Properties #

#stdout: Uint8Array<ArrayBuffer>
readonly

The buffered output from the child process' stdout.

#stderr: Uint8Array<ArrayBuffer>
readonly

The buffered output from the child process' stderr.