From 1be7ec47ac3b6e63be2b03245a26e060b8268b5e Mon Sep 17 00:00:00 2001 From: buckle2000 Date: Mon, 18 May 2020 20:51:54 -0500 Subject: [PATCH] Mark Deno.pid and Deno.noColor as const (#5593) --- cli/js/lib.deno.ns.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index f73a1fdda3..f5e9c0fe7f 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;