summaryrefslogtreecommitdiff
path: root/js/os.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-02-14 00:50:15 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-02-13 08:50:15 -0500
commitc468be64ed6cc3d3d3c2a74f15ba1157082f0f5b (patch)
treecaa77e4b4d7f66ab532e4ee2c1d17a844de6cf89 /js/os.ts
parent473d7317eafad44de4d99a3b0aa54f7e1d49ed79 (diff)
Cleanup Deno namespace (#1765)
Diffstat (limited to 'js/os.ts')
-rw-r--r--js/os.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/os.ts b/js/os.ts
index d38a0bd6d..bb9ecc99a 100644
--- a/js/os.ts
+++ b/js/os.ts
@@ -12,6 +12,7 @@ export let pid: number;
/** Reflects the NO_COLOR environment variable: https://no-color.org/ */
export let noColor: boolean;
+/** @internal */
export function setGlobals(pid_: number, noColor_: boolean): void {
assert(!pid);
pid = pid_;