A plugin for the Engine API Plugin

interface Plugin {
    Config: PluginConfig;
    Enabled: boolean;
    Id?: string;
    Name: string;
    PluginReference?: string;
    Settings: PluginSettings;
}

Properties

Config: PluginConfig
Enabled: boolean

True if the plugin is running. False if the plugin is not running, only installed.

Id?: string
Name: string
PluginReference?: string

plugin remote reference used to push/pull the plugin

Settings: PluginSettings