Appearance
@loontail/minecraft-kit v0.8.14 / InstallAspect
Type alias: InstallAspect
ts
type InstallAspect: {
runtime: {
plan: Promise<InstallPlan>;
run: Promise<InstallReport>;
standalonePlan: Promise<InstallPlan>;
};
plan: Promise<InstallPlan>;
run: Promise<InstallReport>;
};Shape of kit.install. Consumers usually access this through kit.install; the alias is exported so the facade documentation can show the concrete surface.
Type declaration
| Member | Type | Description |
|---|---|---|
runtime | { | |
plan: Promise<InstallPlan>; | ||
run: Promise<InstallReport>; | ||
standalonePlan: Promise<InstallPlan>; | ||
| } | - | |
plan | Promise<InstallPlan> | - |
run | Promise<InstallReport> | - |
standalonePlan | Promise<InstallPlan> | - |
plan | Promise<InstallPlan> | Build the install plan for a target. Side-effect-free for vanilla and Fabric. Forge is the exception: planning downloads the Forge installer JAR and extracts its embedded Maven artifacts to |
run | Promise<InstallReport> | - |