Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/lib.deno.d.ts>Deno.CommandOutput

A JavaScript extension package for building strong and modern applications.
Latest
interface Deno.CommandOutput
implements CommandStatus
import { type Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { CommandOutput } = Deno;

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.