interface DiagnosticEvent {
    color: string;
    ephemeral?: boolean;
    message: string;
    prefix?: string;
    severity: "info" | "info#err" | "warning" | "error";
    streamID?: number;
    urn?: string;
}

Properties

color: string
ephemeral?: boolean
message: string
prefix?: string
severity: "info" | "info#err" | "warning" | "error"
streamID?: number
urn?: string

Generated using TypeDoc