Skip to content

@loontail/minecraft-kit / VerifyAndRepairResult

Type Alias: VerifyAndRepairResult

ts
type VerifyAndRepairResult = {
  repair: RepairReport | null;
  verification: VerificationResult;
};

Defined in: src/types/repair.ts:166

Result of kit.repair.verifyAndRepair. verification is always the verification result; repair is the repair report when a fix ran, or null when nothing needed fixing or mode === RepairModes.REPORT.

Properties

PropertyModifierTypeDefined in
repairreadonlyRepairReport | nullsrc/types/repair.ts:168
verificationreadonlyVerificationResultsrc/types/repair.ts:167

MIT License