15 lines
295 B
Haxe
15 lines
295 B
Haxe
package webextension_polyfill.runtime;
|
|
|
|
/**
|
|
An object containing information about the current platform.
|
|
**/
|
|
typedef PlatformInfo = {
|
|
/**
|
|
The operating system the browser is running on.
|
|
**/
|
|
var os : PlatformOs;
|
|
/**
|
|
The machine's processor architecture.
|
|
**/
|
|
var arch : PlatformArch;
|
|
}; |