(id: string)
| 636 | } |
| 637 | |
| 638 | async getPluginInfo(id: string): Promise<PluginInfo> { |
| 639 | const rpc = await this.getRpc(); |
| 640 | return rpc.getPluginInfo({ id }); |
| 641 | } |
| 642 | |
| 643 | async activateSkill(input: ActivateSkillRpcInput): Promise<void> { |
| 644 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected