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