ChildProcess$Typings extension
- on
Properties
- pid → num
-
no setter
-
status
→ Future<
CommandStatus> -
Get the status of the child.
no setter
-
stderr
↔ ReadableStream<
Uint8List> -
getter/setter pair
-
stdin
↔ WritableStream<
Uint8List> -
getter/setter pair
-
stdout
↔ ReadableStream<
Uint8List> -
getter/setter pair
Methods
-
kill(
[Signal? signo]) → void - Kills the process with given {@linkcode Deno.Signal}.
-
output(
) → Future< 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.