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

readonly
stdout: Uint8Array

The buffered output from the child process' stdout.

readonly
stderr: Uint8Array

The buffered output from the child process' stderr.

© 2018–2024 the Deno authors
Licensed under the MIT License.
https://docs.deno.com/api/deno/~/Deno.CommandOutput