* @zh 获取失败的插件 * @en Get failed plugins
()
| 207 | * @en Get failed plugins |
| 208 | */ |
| 209 | getFailed(): PluginLoadInfo[] { |
| 210 | return [...this._loaded.values()].filter( |
| 211 | p => p.state === 'failed' || p.state === 'missing' |
| 212 | ); |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * @zh 获取插件信息 |
no test coverage detected