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

    Interface HostInspection

    What the Host still owns, as plain data.

    The counts on ApplicationHost answer "did anything leak?"; this answers "what, and whose is it?" without handing out the scopes themselves.

    interface HostInspection {
        registrations: ScopeInspection | undefined;
        resources: ScopeInspection | undefined;
        state: HostState;
    }

    Hierarchy (View Summary)

    Index
    registrations: ScopeInspection | undefined

    Synchronous registrations, or undefined before start() runs.

    resources: ScopeInspection | undefined

    Asynchronous resources, or undefined before start() runs.

    state: HostState

    Current lifecycle state.