(id: string, data: unknown)
| 519 | } |
| 520 | |
| 521 | private reply(id: string, data: unknown): void { |
| 522 | this.sendIpc({ id, type: "result", data }); |
| 523 | } |
| 524 | |
| 525 | private replyError(id: string, message: string): void { |
| 526 | this.sendIpc({ id, type: "error", message }); |