Interface ProtocolModuleDiagnostic

Stable, protocol-neutral diagnostic exposed by one discovered module handle.

interface ProtocolModuleDiagnostic {
    code: string;
    message: string;
    severity: "error" | "info" | "warning";
}

Properties

Properties

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