import type * as Extend from "../index"; /** * The result of a rule validation step. */ export interface RuleValidationResult { /** The list of validation rules and their results. */ rules: Extend.RuleValidationResultRulesItem[]; /** Indicates whether all validation rules passed. */ allPassed: boolean; }