Interface ValidatorValidateResult

Result of the validate() function.

interface ValidatorValidateResult {
    conditionEvaluateResult: ConditionEvaluateResult;
    issueFound: null | IssueFound;
    skipped?: boolean;
}

Properties

conditionEvaluateResult: ConditionEvaluateResult

The result of validate()

issueFound: null | IssueFound

Assigned with issue details when an issue is found. Null when no issue is found.

skipped?: boolean

When true, validate() bailed before evaluation due to Enabled or Enabler

Generated using TypeDoc v0.25.12