next-flow-interface 0.18.22 → 0.18.23
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 +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2209,6 +2209,9 @@ interface PluginServiceApi {
|
|
|
2209
2209
|
uninstall(id: string): Promise<void>;
|
|
2210
2210
|
waitInstall(id: string): Promise<void>;
|
|
2211
2211
|
waitEnable(id: string): Promise<void>;
|
|
2212
|
+
isOpenablePlugin(type: PluginType): boolean;
|
|
2213
|
+
isSideBarPlugin(type: PluginType): boolean;
|
|
2214
|
+
isViewPlugin(type: PluginType): boolean;
|
|
2212
2215
|
}
|
|
2213
2216
|
|
|
2214
2217
|
interface SceneServiceApi {
|
package/package.json
CHANGED