Skip to main content
interface Deno.SpawnOutput
implements ChildStatus
Unstable
Deprecated
Deprecated

Use the Deno.Command API instead.

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.