-
Notifications
You must be signed in to change notification settings - Fork 0
Plugin
alanlohse edited this page Aug 8, 2021
·
1 revision
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>