* 获取插件元数据 * * @param name - 插件名称 * @returns 插件元数据,如果未安装则返回undefined
(name: string)
| 161 | * @returns 插件元数据,如果未安装则返回undefined |
| 162 | */ |
| 163 | public getMetadata(name: string): IPluginMetadata | undefined { |
| 164 | return this._metadata.get(name); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * 获取所有已安装的插件 |
no test coverage detected