import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { ChildProcess } = Deno;
The interface for handling a child process returned from
Deno.Command.spawn
.
Properties
readonly
status: Promise<CommandStatus>Get the status of the child.
readonly
stderr: ReadableStream<Uint8Array>readonly
stdin: WritableStream<Uint8Array>readonly
stdout: ReadableStream<Uint8Array>Methods
Kills the process with given Deno.Signal
.
Defaults to SIGTERM
if no signal is provided.
output(): Promise<CommandOutput>
Waits for the child to exit completely, returning all its output and status.
ref(): void
Ensure that the status of the child process prevents the Deno process from exiting.
unref(): void
Ensure that the status of the child process does not block the Deno process from exiting.
[Symbol.asyncDispose](): Promise<void>