1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-16 02:48:52 -05:00
denoland-deno/js/platform.ts

19 lines
463 B
TypeScript
Raw Normal View History

2018-10-20 03:25:29 +08:00
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
2018-10-04 21:20:14 +10:00
// Do not add unsupported platforms.
export interface Platform {
2018-10-15 07:29:50 +11:00
/** The operating system CPU architecture. */
2018-10-04 21:20:14 +10:00
arch: "x64";
2018-10-15 07:29:50 +11:00
/** The operating system platform. */
2018-10-04 21:20:14 +10:00
os: "mac" | "win" | "linux";
}
// 'platform' is injected by rollup.config.js at compile time.
2018-10-04 21:20:14 +10:00
export const platform: Platform = {
// tslint:disable:no-any
arch: "" as any,
os: "" as any
// tslint:disable:any
};