Interface AutomaticMapLibreDiagnostic

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

Properties

message: string
severity: "error" | "info" | "warning"