summaryrefslogtreecommitdiff
path: root/cli/js/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorbuckle2000 <buckle2000@users.noreply.github.com>2020-05-18 20:51:54 -0500
committerGitHub <noreply@github.com>2020-05-18 21:51:54 -0400
commit1be7ec47ac3b6e63be2b03245a26e060b8268b5e (patch)
treebb47543a2204d86b786056c97c05b2dc376ac2bc /cli/js/lib.deno.ns.d.ts
parent6072755eadb7342a409f43260e5a17b956703a1c (diff)
Mark Deno.pid and Deno.noColor as const (#5593)
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r--cli/js/lib.deno.ns.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts
index f73a1fdda..f5e9c0fe7 100644
--- a/cli/js/lib.deno.ns.d.ts
+++ b/cli/js/lib.deno.ns.d.ts
@@ -27,12 +27,12 @@ declare namespace Deno {
};
/** The current process id of the runtime. */
- export let pid: number;
+ export const pid: number;
/** Reflects the `NO_COLOR` environment variable.
*
* See: https://no-color.org/ */
- export let noColor: boolean;
+ export const noColor: boolean;
export interface TestDefinition {
fn: () => void | Promise<void>;