(update: acp.SessionUpdate)
| 302 | } |
| 303 | |
| 304 | private async sendUpdate(update: acp.SessionUpdate): Promise<void> { |
| 305 | const params: acp.SessionNotification = { |
| 306 | sessionId: this.id, |
| 307 | update, |
| 308 | }; |
| 309 | |
| 310 | await this.client.sessionUpdate(params); |
| 311 | } |
| 312 | |
| 313 | private async runTool( |
| 314 | abortSignal: AbortSignal, |
no test coverage detected