interface Deno.CommandOutput
implements CommandStatus

The interface returned from calling {@link Deno.Command.output} or {@link 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.