Interface Diagnostics

A snapshot of the previewed app's diagnostics: its build errors, captured console output, and the DiagnosticsProvenance of the compile.

interface Diagnostics {
    buildErrors: BuildError[];
    consoleEntries: ConsoleEntry[];
    provenance: null | DiagnosticsProvenance;
}

Properties

buildErrors: BuildError[]
consoleEntries: ConsoleEntry[]
provenance: null | DiagnosticsProvenance