Home > @xoram/core > addPlugins
addPlugins() function
Register a set of plugins into the active application after it has been initialized.
Signature:
typescript
export declare function addPlugins(definePlugins: PluginDefinition[], app: Application): void;
1
Parameters
Parameter | Type | Description |
---|---|---|
definePlugins | the plugin definitions to register in the application | |
app | the application to register the plugin into, you should not need to pass this argument in normal use |
Returns:
void