AutoBE
    Preparing search index...

    Compact validation result for endpoint-level failure reporting.

    interface IValidationSummary {
        diagnostics?: IDiagnostic[];
        error?: AutoBeRealizeOperationFailure.IError;
        type: "success" | "failure" | "exception";
    }
    Index

    Properties

    diagnostics?: IDiagnostic[]

    Compiler diagnostics, when the compile produced any.

    Error details when validation itself threw.

    type: "success" | "failure" | "exception"

    Compile result kind (success, failure, exception).