Appearance
@loontail/minecraft-kit / RuntimeSystem
Type Alias: RuntimeSystem
ts
type RuntimeSystem = {
arch: Architecture;
os: OperatingSystem;
osVersion: string;
};Defined in: src/types/system.ts:37
Identifies the host system for the launcher. All resolvers consume this object to pick the right artifacts (libraries, natives, runtime).
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
arch | readonly | Architecture | CPU architecture (mojang naming). | src/types/system.ts:41 |
os | readonly | OperatingSystem | OS identifier (mojang naming). | src/types/system.ts:39 |
osVersion | readonly | string | OS version string from os.release(). Used to evaluate library os.version regex rules. | src/types/system.ts:43 |