@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface HostDiagnostic

    An observability event emitted by the Host lifecycle.

    Diagnostics are best-effort records, not an application event bus: listener failures are swallowed and delivery must not be used to coordinate work.

    interface HostDiagnostic {
        details?: Readonly<Record<string, unknown>>;
        event: string;
    }
    Index
    details?: Readonly<Record<string, unknown>>

    Structured context for the event.

    event: string

    Dotted event name, for example application.stopping.