Skip to main content
Module

x/deno/js/process.ts>ProcessStdio

A modern runtime for JavaScript and TypeScript.
Go to Latest
type alias ProcessStdio
import { type ProcessStdio } from "https://deno.land/x/deno@v0.17.0/js/process.ts";

How to handle subprocess stdio.

"inherit" The default if unspecified. The child inherits from the corresponding parent descriptor.

"piped" A new pipe should be arranged to connect the parent and child subprocesses.

"null" This stream will be ignored. This is the equivalent of attaching the stream to /dev/null.

definition: "inherit" | "piped" | "null"