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;