1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/js/platform.ts
2018-10-14 17:38:23 -04:00

16 lines
392 B
TypeScript

// 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
};