* 公共方法:获取指定插件的所有文档 key
(pluginName: string)
| 731 | * 公共方法:获取指定插件的所有文档 key |
| 732 | */ |
| 733 | public async getPluginDocKeys(pluginName: string): Promise<{ |
| 734 | success: boolean |
| 735 | data?: Array<{ key: string; type: 'document' | 'attachment' }> |
| 736 | error?: string |
| 737 | }> { |
| 738 | return await this._getPluginDocKeys(pluginName) |
| 739 | } |
| 740 | |
| 741 | /** |
| 742 | * 公共方法:获取指定插件的文档或附件内容 |
no test coverage detected