Promise<boolean>:是否成功关闭
PluginManager
closePluginView
关闭插件界面。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
关闭插件界面。
closePluginView(): Promise<boolean>;
Promise<boolean>:是否成功关闭import { PluginManager } from 'sn-plugin-lib';
/**
* 关闭插件界面的示例。
*/
export async function exampleClosePluginView() {
const ok = await PluginManager.closePluginView();
return ok;
}