Skip to main content
Module

x/netzo/deno.d.ts>Deno.RunOptions

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
interface Deno.RunOptions
import { type Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { RunOptions } = Deno;

Properties

cmd: readonly 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