summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-08-12 19:20:34 +0100
committerGitHub <noreply@github.com>2020-08-12 14:20:34 -0400
commit18ec1290afcd78c61933ecb52e3ad97cf644f0d5 (patch)
tree10705623951571e5ef73febdcee76e4def280ce7 /cli/dts/lib.deno.ns.d.ts
parent452693256ce7b607fa0b9454b22c57748f616742 (diff)
feat: Support file URLs in Deno.run for executable (#6994)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/dts/lib.deno.ns.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts
index 5cb0f432b..755651d22 100644
--- a/cli/dts/lib.deno.ns.d.ts
+++ b/cli/dts/lib.deno.ns.d.ts
@@ -1896,7 +1896,7 @@ declare namespace Deno {
export interface RunOptions {
/** Arguments to pass. Note, the first element needs to be a path to the
* binary */
- cmd: string[];
+ cmd: string[] | [URL, ...string[]];
cwd?: string;
env?: {
[key: string]: string;