(source: string)
| 441 | } |
| 442 | |
| 443 | async installPlugin(source: string): Promise<PluginSummary> { |
| 444 | this.ensureOpen(); |
| 445 | return this.rpc.installPlugin(source); |
| 446 | } |
| 447 | |
| 448 | async setPluginEnabled(id: string, enabled: boolean): Promise<void> { |
| 449 | this.ensureOpen(); |
no test coverage detected