next-flow-interface 0.18.28 → 0.18.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1609,7 +1609,7 @@ interface PluginInformation {
|
|
|
1609
1609
|
}
|
|
1610
1610
|
interface PluginContainerServiceApi {
|
|
1611
1611
|
plugins: Map<string, PluginInformation>;
|
|
1612
|
-
addPlugin(plugin: BasePlugin):
|
|
1612
|
+
addPlugin(plugin: BasePlugin): void;
|
|
1613
1613
|
removePlugin(plugin: BasePlugin): void;
|
|
1614
1614
|
openPlugin(plugin: IconPlugin): Promise<boolean>;
|
|
1615
1615
|
closePlugin(plugin: IconPlugin): Promise<boolean>;
|
package/package.json
CHANGED