* 公共方法:获取指定插件的文档或附件内容
(
pluginName: string,
key: string
)
| 742 | * 公共方法:获取指定插件的文档或附件内容 |
| 743 | */ |
| 744 | public async getPluginDoc( |
| 745 | pluginName: string, |
| 746 | key: string |
| 747 | ): Promise<{ success: boolean; data?: any; type?: string; error?: string }> { |
| 748 | return await this._getPluginDoc(pluginName, key) |
| 749 | } |
| 750 | |
| 751 | /** |
| 752 | * 公共方法:清空指定插件的所有数据 |
no test coverage detected