lib-iitc-manager
    Preparing search index...

    Interface PluginEventData

    Plugin event object passed to the plugin_event callback. Contains plugin data for 'add'/'update' events, or empty objects for 'remove' events.

    interface PluginEventData {
        event: PluginEventType;
        plugins: { [uid: string]: Plugin | EmptyObject };
    }
    Index

    Properties

    Properties

    The type of plugin event.

    plugins: { [uid: string]: Plugin | EmptyObject }

    A mapping of plugin UIDs to plugin data or empty objects.