(message: WebviewMessage)
| 464 | // ========================================================================== |
| 465 | |
| 466 | public sendToExtension(message: WebviewMessage): void { |
| 467 | if (!this.isReady) { |
| 468 | throw new Error("You cannot send messages to the extension before it is ready") |
| 469 | } |
| 470 | |
| 471 | this.emit("webviewMessage", message) |
| 472 | } |
| 473 | |
| 474 | // ========================================================================== |
| 475 | // Task Management |
no test coverage detected