(input: EditInput)
| 266 | } |
| 267 | |
| 268 | async edit(input: EditInput): Promise<MutationOutcome> { |
| 269 | return unwrap(await edit({ ...input, ctx: this.#ctx() }), this.#config.onError); |
| 270 | } |
| 271 | |
| 272 | async claim(wantedId: string): Promise<MutationOutcome> { |
| 273 | return unwrap(await claim({ ctx: this.#ctx(), wantedId }), this.#config.onError); |
no test coverage detected