class ChildProcess
extends EventEmitter
import { ChildProcess } from "https://deno.land/std@0.104.0/node/child_process.ts";
Properties
The exit code of the child process. This property will be null
until the child process exits.
stderr: Readable | null
This property represents the child process's stderr.
stdin: Writable | null
This property represents the child process's stdin.
stdout: Readable | null
This property represents the child process's stdout.
Methods
private
_handleError(err: Error): voidprivate
_waitForChildStreamsToClose(): Promise<void>kill(signal?: number): boolean
ref(): void
unref(): void