Skip to main content
interface Deno.RunOptions

Properties

cmd: string[] | [URL, ...string[]]

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

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