Deno.RunOptions
interface RunOptions {
cmd
: string[] | [URL, ...string[]];
cwd?: string;
stderr?
:
| "inherit"
| "piped"
| "null"
| number;
stdin?
:
| "inherit"
| "piped"
| "null"
| number;
stdout?
:
| "inherit"
| "piped"
| "null"
| number;
}
Properties
cmd
: string[] | [URL, ...string[]]
Arguments to pass. Note, the first element needs to be a path to the binary
stderr?: "inherit" | "piped" | "null" | number
stdin?: "inherit" | "piped" | "null" | number
stdout?: "inherit" | "piped" | "null" | number