PostMessage RPC API Documentation - v0.2.2
    Preparing search index...

    Interface PluginConfig

    Configuration for initializing a plugin from the parent side

    interface PluginConfig {
        data: unknown;
        settings: unknown;
        hooks: Record<string, Method>;
    }
    Index

    Properties

    Properties

    data: unknown

    Initial data to pass to the plugin

    settings: unknown

    Plugin settings and configuration

    hooks: Record<string, Method>

    Map of hook names to callback functions that the parent provides to the plugin