(source: string)
| 607 | } |
| 608 | |
| 609 | async installPlugin(source: string): Promise<PluginSummary> { |
| 610 | const rpc = await this.getRpc(); |
| 611 | return rpc.installPlugin({ source }); |
| 612 | } |
| 613 | |
| 614 | async setPluginEnabled(id: string, enabled: boolean): Promise<void> { |
| 615 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected