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

    Interface Plugin

    A collection of modules that are be enabled/disabled as a unit. Plugins provide things such as components, state, actions, etc. to the application.

    interface Plugin {
        "[PluginTypeId]": typeof Plugin.PluginTypeId;
        meta: Readonly<Meta>;
        modules: readonly PluginModule[];
    }
    Index

    Properties

    "[PluginTypeId]": typeof Plugin.PluginTypeId
    meta: Readonly<Meta>
    modules: readonly PluginModule[]