KC's Workspace
    Preparing search index...

    Interface ConfigPlugin<N, C>

    interface ConfigPlugin<N extends string, C> {
        applyConfig?: ConfigPluginAction<C>;
        applySetting?: ConfigPluginAction<BaseSetting>;
        configPriority: number;
        name: N;
        settingPriority: number;
    }

    Type Parameters

    • N extends string
    • C
    Index
    applyConfig?: ConfigPluginAction<C>

    Apply the plugin to the base configuration

    Apply the plugin to the base setting

    configPriority: number

    Priority of the plugin configuration (default to 0)

    name: N

    Plugin name for identification

    settingPriority: number

    Priority of the plugin setting (default to 0)