Type Alias FullDocumentDiagnosticReport

FullDocumentDiagnosticReport: {
    items: Diagnostic[];
    kind: typeof DocumentDiagnosticReportKind.Full;
    resultId?: string;
}

A diagnostic report with a full set of problems.

Type declaration

  • items: Diagnostic[]

    The actual items.

  • kind: typeof DocumentDiagnosticReportKind.Full

    A full document diagnostic report.

  • OptionalresultId?: string

    An optional result id. If provided it will be sent on the next diagnostic request for the same document.

3.17.0