blob: a27241e08271f608e0dcb65fa0074b8d039fc352 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2018 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
};
|