Type Alias DocumentIssueSummary

DocumentIssueSummary: {
    countErrors: number;
    countNonErrors: number;
    countTotal: number;
    message: string;
    summary: string;
}

Represents a summary of document issues.

Contains counts of errors and non-error issues, as well as formatted summary and message strings.

Type declaration

  • countErrors: number

    Number of issues with severity ERROR.

  • countNonErrors: number

    Number of issues with severity other than ERROR.

  • countTotal: number

    Total number of issues found in the document.

  • message: string

    A detailed message string listing all issues.

  • summary: string

    A brief summary string of the issues.