import { Process } from "https://deno.land/x/deno@v0.28.0/cli/js/process.ts";
Properties
readonly
optional
stderr: ReadCloserreadonly
optional
stdin: WriteCloserreadonly
optional
stdout: ReadCloserMethods
close(): void
kill(signo: number): void
output(): Promise<Uint8Array>
Buffer the stdout and return it as Uint8Array after EOF. You must set stdout to "piped" when creating the process. This calls close() on stdout after its done.
status(): Promise<ProcessStatus>
stderrOutput(): Promise<Uint8Array>
Buffer the stderr and return it as Uint8Array after EOF. You must set stderr to "piped" when creating the process. This calls close() on stderr after its done.