class Deno.ChildProcess
The interface for handling a child process returned from
Deno.Command.spawn
.
Properties
🔗
pid: number
🔗
stderr: ReadableStream<Uint8Array>
🔗
stdin: WritableStream<Uint8Array>
🔗
stdout: ReadableStream<Uint8Array>
Methods
🔗
output(): Promise<CommandOutput>
Waits for the child to exit completely, returning all its output and status.
🔗
unref(): void
Ensure that the status of the child process does not block the Deno process from exiting.