Skip to content

@loontail/minecraft-kit / RepairPlanOptions

Type Alias: RepairPlanOptions

ts
type RepairPlanOptions = {
  from:   | VerificationResult
     | readonly VerificationResult[];
  shouldRepairIssue?: RepairIssueFilter;
  signal?: AbortSignal;
};

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

Options for any repair.<aspect>.plan call. Accepts one or many verification results.

Properties

PropertyModifierTypeDefined in
fromreadonly| VerificationResult | readonly VerificationResult[]src/types/repair.ts:102
shouldRepairIssue?readonlyRepairIssueFiltersrc/types/repair.ts:104
signal?readonlyAbortSignalsrc/types/repair.ts:103

MIT License