Skip to content

@loontail/minecraft-kit v0.8.14 / RuntimeComponent

Type alias: RuntimeComponent

ts
type RuntimeComponent: string;

Runtime component literal. Always a string; the RuntimeComponents const lists the components we know about but unknown ones (added by Mojang in the future) are resolved dynamically.

Example

ts
import { RuntimeComponents, type RuntimeComponent } from "@loontail/minecraft-kit";

const component: RuntimeComponent = resolved.manifest.javaVersion?.component
  ?? RuntimeComponents.JAVA_RUNTIME_GAMMA;

Source

src/types/runtime.ts:45

MIT License