summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-08-10 21:41:51 +0100
committerGitHub <noreply@github.com>2020-08-10 16:41:51 -0400
commit52c1017a74059655f9424f7ceb3f0c74dcc7f3be (patch)
tree9ac9c438a6916b67118e5f65e62caa97d35196c0 /cli/dts/lib.deno.ns.d.ts
parent6fcf06306ed2ea52031a97b918f1e929d7209250 (diff)
feat: Stabilize Deno.mainModule (#6993)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/dts/lib.deno.ns.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts
index f551ea361..5cb0f432b 100644
--- a/cli/dts/lib.deno.ns.d.ts
+++ b/cli/dts/lib.deno.ns.d.ts
@@ -2025,4 +2025,7 @@ declare namespace Deno {
* called when `Deno.inspect()` is called, or when the object is logged to
* the console. */
export const customInspect: unique symbol;
+
+ /** The URL of the entrypoint module entered from the command-line. */
+ export const mainModule: string;
}