Interface HonuaPluginLifecycleDiagnosticExperimental

Stable, deeply immutable machine event. It intentionally contains no thrown error text.

interface HonuaPluginLifecycleDiagnostic {
    code: string;
    phase: HonuaPluginLifecyclePhase;
    plugin: null | {
        id: string;
        kind:
            | "realtime"
            | "protocol"
            | "cache"
            | "style"
            | "auth"
            | "renderer"
            | "analysis"
            | "source-format"
            | "geocoder-routing";
        version: string;
    };
    sequence: number;
    status: HonuaPluginLifecycleStatus;
}

Properties

code: string
plugin: null | {
    id: string;
    kind:
        | "realtime"
        | "protocol"
        | "cache"
        | "style"
        | "auth"
        | "renderer"
        | "analysis"
        | "source-format"
        | "geocoder-routing";
    version: string;
}
sequence: number