@flowscripter/dynamic-plugin-framework
    Preparing search index...

    Interface ExtensionEntry

    Provides information for a particular Extension which is provided by a plugin hosted in a PluginRepository.

    interface ExtensionEntry {
        extensionData?: ReadonlyMap<string, string>;
        extensionId: string;
        extensionPoint: string;
        pluginData?: ReadonlyMap<string, string>;
        pluginId: string;
    }
    Index

    Properties

    extensionData?: ReadonlyMap<string, string>

    Optional data provided by the Extension to the host application

    extensionId: string

    ID provided by a PluginRepository to reference an Extension provided by a Plugin.

    Note that this is only unique per Plugin.

    extensionPoint: string

    The implemented Extension Point

    pluginData?: ReadonlyMap<string, string>

    Optional data provided by the Plugin providing the Extension to the host application

    pluginId: string

    ID provided by a PluginRepository to reference a Plugin.

    Note that this is only unique per PluginRepository.