Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.RunOptions

interface RunOptions {
cmd: readonly string[] | [URL, ...string[]];
cwd?: string;
env?: {
[key: string]: string;
}
;
stderr?:
| "inherit"
| "piped"
| "null"
| number;
stdin?:
| "inherit"
| "piped"
| "null"
| number;
stdout?:
| "inherit"
| "piped"
| "null"
| number;
}

§Properties

§
cmd: readonly string[] | [URL, ...string[]]
[src]

Arguments to pass. Note, the first element needs to be a path to the binary

§
cwd?: string
[src]
§
env?: {
[key: string]: string;
}
[src]
§
stderr?: "inherit" | "piped" | "null" | number
[src]
§
stdin?: "inherit" | "piped" | "null" | number
[src]
§
stdout?: "inherit" | "piped" | "null" | number
[src]