(slug: string)
| 98 | // -- install / star ---------------------------------------------------- |
| 99 | |
| 100 | async install(slug: string): Promise<SkillInstall> { |
| 101 | const env = await this.unary(this.req({ case: "skillsInstallReq", value: { slug } })); |
| 102 | return env.payload.value as SkillInstall; |
| 103 | } |
| 104 | |
| 105 | async star(slug: string): Promise<SkillStar> { |
| 106 | const env = await this.unary(this.req({ case: "skillsStarReq", value: { slug } })); |