Appearance
@loontail/minecraft-kit / RepairPlan
Type Alias: RepairPlan
ts
type RepairPlan = {
actions: readonly InstallAction[];
directory: string;
runtimeManifest?: RuntimeFilesManifest;
target: Target;
targetId: string;
totalActions: number;
totalBytes: number;
};Defined in: src/types/repair.ts:33
A repair plan is, structurally, an install plan limited to actions needed to fix the issues reported by a previous VerificationResult. The runner is the same.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
actions | readonly | readonly InstallAction[] | - | src/types/repair.ts:37 |
directory | readonly | string | - | src/types/repair.ts:35 |
runtimeManifest? | readonly | RuntimeFilesManifest | Runtime files manifest carried over from the install plan this repair was derived from, so running the repair never has to refetch it. Absent when the repair was derived without a runtime resolution (e.g. repair.fromError). | src/types/repair.ts:45 |
target | readonly | Target | - | src/types/repair.ts:36 |
targetId | readonly | string | - | src/types/repair.ts:34 |
totalActions | readonly | number | - | src/types/repair.ts:39 |
totalBytes | readonly | number | - | src/types/repair.ts:38 |