()
| 436 | } |
| 437 | |
| 438 | async listPlugins(): Promise<readonly PluginSummary[]> { |
| 439 | this.ensureOpen(); |
| 440 | return this.rpc.listPlugins(); |
| 441 | } |
| 442 | |
| 443 | async installPlugin(source: string): Promise<PluginSummary> { |
| 444 | this.ensureOpen(); |
no test coverage detected