Appearance
@loontail/minecraft-kit / ProgressStages
Variable: ProgressStages
ts
const ProgressStages: {
FINALIZE: "finalize";
LOADER: "loader";
MINECRAFT: "minecraft";
PREPARE: "prepare";
RUNTIME: "runtime";
};Defined in: src/install/progress-tracker.ts:29
UI-oriented coarse progress stages, identical across install and repair flows.
Type Declaration
Example
ts
import { ProgressStages, type ProgressStage } from "@loontail/minecraft-kit";
const labels: Record<ProgressStage, string> = {
[ProgressStages.PREPARE]: "Preparing…",
[ProgressStages.RUNTIME]: "Installing Java",
[ProgressStages.MINECRAFT]: "Downloading game",
[ProgressStages.LOADER]: "Installing mod loader",
[ProgressStages.FINALIZE]: "Done",
};