summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-11 20:34:48 -0400
committerGitHub <noreply@github.com>2019-03-11 20:34:48 -0400
commitae4405d747f8a990e1dd31b7bb1166ca7fad9921 (patch)
tree9655b016219bb0264698f8066224ed4fc64b1b4f /js/deno.ts
parent8828bb8c0e743d9ac2b13a144ea4565d6d2ea7fc (diff)
Make some renames in js/build.ts (#1912)
* Replace Deno.OSType enum with Deno.OperatingSystem type alias * Add arm64 to supported CPU architectures * add type alias for cpu arch Deno.Arch
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index a9f5f2018..d663ca55c 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -63,7 +63,7 @@ export { metrics, Metrics } from "./metrics";
export { resources } from "./resources";
export { run, RunOptions, Process, ProcessStatus } from "./process";
export { inspect } from "./console";
-export { build, platform, OSType } from "./build";
+export { build, platform, OperatingSystem, Arch } from "./build";
export { version } from "./version";
export const args: string[] = [];