Skip to main content
interface Deno.SpawnOutput
implements ChildStatus
Unstable

The interface returned from calling Deno.spawn or Deno.spawnSync which represents the result of spawning the child process.

Properties

readonly
stdout: Uint8Array

The buffered output from the child processes stdout.

readonly
stderr: Uint8Array

The buffered output from the child processes stderr.