Skip to content

@loontail/minecraft-kit v0.8.14 / Architecture

Type alias: Architecture

ts
type Architecture: typeof Architectures[keyof typeof Architectures];

Architecture literal used in launcher metadata.

Example

ts
import { Architectures, type Architecture } from "@loontail/minecraft-kit";

const nativesClassifier = (arch: Architecture): string =>
  arch === Architectures.ARM64 ? "natives-arm64" : "natives";

Source

src/types/system.ts:61

MIT License