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