@dxos/app-framework - v0.9.0
    Preparing search index...

    Type Alias PluginsState

    Atomic snapshot of the registry catalog as observed by the host. Exposed via Manager.plugins so consumers can subscribe reactively (loading state, list contents, last error).

    type PluginsState = {
        entries: readonly Registry.Plugin[];
        error: Error | null;
        loading: boolean;
    }
    Index

    Properties

    Properties

    entries: readonly Registry.Plugin[]
    error: Error | null
    loading: boolean