Interface StatefulValueHostValidateResult

Result of the validate() function that will be saved in ValidatableValueHostInstanceState

interface StatefulValueHostValidateResult {
    status: ValidationStatus;
    issuesFound: null | IssueFound[];
    corrected?: boolean;
}

Hierarchy (view full)

Properties

The state of validation for this ValueHost.

issuesFound: null | IssueFound[]

The issues that were found.

corrected?: boolean

Set to true when the user has fixed all invalid validators. Undefined or false otherwise, including if the status changes after this point.

Generated using TypeDoc v0.25.12