(id: string)
| 626 | } |
| 627 | |
| 628 | async removePlugin(id: string): Promise<void> { |
| 629 | const rpc = await this.getRpc(); |
| 630 | return rpc.removePlugin({ id }); |
| 631 | } |
| 632 | |
| 633 | async reloadPlugins(): Promise<ReloadSummary> { |
| 634 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected