Skip to main content
Module

x/denoversion/lib/lib.deno_runtime.d.ts>deno.Process

Deno cli to manage and bump release versions.
Latest
class deno.Process
import { deno } from "https://deno.land/x/denoversion@v1.0.2/lib/lib.deno_runtime.d.ts";
const { Process } = deno;

Properties

readonly
pid: number
readonly
rid: number
readonly
optional
stderr: ReadCloser
readonly
optional
stdin: WriteCloser
readonly
optional
stdout: ReadCloser

Methods

close(): void
output(): Promise<Uint8Array>

Buffer the stdout and return it as Uint8Array after EOF. You must have set stdout to "piped" in when creating the process. This calls close() on stdout after its done.

status(): Promise<ProcessStatus>