Interface MapLibreSourceDiagnostic

interface MapLibreSourceDiagnostic {
    code: MapLibreSourceDiagnosticCode;
    detail?: Readonly<Record<string, unknown>>;
    fidelity: "unsupported" | "exact" | "equivalent";
    message: string;
    planId: string;
    severity: "info" | "warning";
    sourceId: string;
    stage: "project" | "update" | "execute";
}

Properties

detail?: Readonly<Record<string, unknown>>
fidelity: "unsupported" | "exact" | "equivalent"
message: string
planId: string
severity: "info" | "warning"
sourceId: string
stage: "project" | "update" | "execute"