import { type Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { CommandOptions } = Deno;
Options which can be set when calling Deno.Command
.
Properties
The working directory of the process.
If not specified, the cwd
of the parent process is used.
Clear environmental variables from parent process.
Doesn't guarantee that only env
variables are present, as the OS may
set environmental variables for processes.
Sets the child process’s user ID. This translates to a setuid call in the child process. Failure in the set uid call will cause the spawn to fail.
An AbortSignal
that allows closing the process using the
corresponding AbortController
by sending the process a
SIGTERM signal.
Not supported in Deno.Command.outputSync
.
How stdin
of the spawned process should be handled.
Defaults to "inherit"
for output
& outputSync
,
and "inherit"
for spawn
.
How stdout
of the spawned process should be handled.
Defaults to "piped"
for output
& outputSync
,
and "inherit"
for spawn
.
How stderr
of the spawned process should be handled.
Defaults to "piped"
for output
& outputSync
,
and "inherit"
for spawn
.