Type Alias PluginData
PluginData : {
manager: {
eventPrepend: string;
scopedName: string;
};
module: object;
plugin: {
name: string;
options: object;
target: string;
targetEscaped: string;
type: string;
};
}
manager: {
eventPrepend: string;
scopedName: string;
};
module: object;
plugin: {
name: string;
options: object;
target: string;
targetEscaped: string;
type: string;
};
}
Type declaration
manager: {
eventPrepend: string;
scopedName: string;
}Data about the plugin manager.
event
Prepend : stringscoped
Name : string
module: object
Optional object hash to associate with plugin.
plugin: {
name: string;
options: object;
target: string;
targetEscaped: string;
type: string;
}Data about the plugin.
name: string
options: object
target: string
target
Escaped : stringtype: string
PluginManager plugin data object describes a loaded plugin.