Deno.SpawnOptions
interface SpawnOptions {
args?: string[];
clearEnv?: boolean;
cwd?: string | URL;
env?: Record<string, string>;
gid?: number;
signal?: AbortSignal;
stderr?: "piped" | "inherit" | "null";
stdin?: "piped" | "inherit" | "null";
stdout?: "piped" | "inherit" | "null";
uid?: number;
}§Properties
§
clearEnv?: boolean
[src]Clear environmental variables from parent process.
Doesn't guarantee that only opt.env
variables are present,
as the OS may set environmental variables for processes.
§
cwd?: string | URL
[src]The working directory of the process. If not specified, the cwd of the parent process is used.