Plugin - gottabe-io/gottabe-plugin-dev GitHub Wiki
gottabe-plugin-dev / Exports / Plugin
Interace for plugin implementation
▸ process(phaseParams, pluginContext): Promise<void>
The plugin stuff must be implemented in this method. The method doesn't require a result, but can be asynchronous.
| Name | Type | Description |
|---|---|---|
phaseParams |
PhaseParams |
the phase parameters |
pluginContext |
PluginContext |
the plugin context |
Promise<void>