diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-03-06 13:54:58 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-06 16:54:58 -0500 |
commit | de1a10e5f7afe793a66b2349642ea135fc066104 (patch) | |
tree | 3d91d82a62808f744fc189705110a50d7d8d478e /js/platform.ts | |
parent | 91364cabae8687e7620edac406b43cb40cb55878 (diff) |
Reorganize version and platform into Deno.build and Deno.version (#1879)
Diffstat (limited to 'js/platform.ts')
-rw-r--r-- | js/platform.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/js/platform.ts b/js/platform.ts deleted file mode 100644 index 9061b4ed3..000000000 --- a/js/platform.ts +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. - -// Do not add unsupported platforms. -export interface Platform { - /** The operating system CPU architecture. */ - arch: "x64"; - - /** The operating system platform. */ - os: "mac" | "win" | "linux"; -} - -// 'platform' is injected by rollup.config.js at compile time. -export const platform: Platform = { - // tslint:disable:no-any - arch: "" as any, - os: "" as any - // tslint:disable:any -}; |