Interface RendererDiagnostic

Stable, renderer-neutral diagnostic exposed by one mounted handle.

interface RendererDiagnostic {
    code: string;
    message: string;
    severity: "error" | "info" | "warning";
    strategy?: string;
}

Properties

code: string
message: string
severity: "error" | "info" | "warning"
strategy?: string