diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-09-07 01:57:15 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-06 12:57:15 -0400 |
commit | 595b4daa77771458457e178b6b590a044cd41ad0 (patch) | |
tree | d8b19636e4795bcb11ba5c45982d32334da60115 /js/os.ts | |
parent | ca000392857b4c79a3609ddbc20073222498998b (diff) |
Remove replacements hack in deno_typescript (#2864)
Diffstat (limited to 'js/os.ts')
-rw-r--r-- | js/os.ts | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -5,6 +5,7 @@ import { sendSync } from "./dispatch_json.ts"; import { assert } from "./util.ts"; import * as util from "./util.ts"; import { window } from "./window.ts"; +import { OperatingSystem, Arch } from "./build.ts"; // builtin modules import { _setGlobals } from "./deno.ts"; @@ -62,6 +63,8 @@ interface Start { tsVersion: string; noColor: boolean; xevalDelim: string; + os: OperatingSystem; + arch: Arch; } // This function bootstraps an environment within Deno, it is shared both by |