* Mark a message as displayed (useful for external coordination).
(ts: number, text: string, partial: boolean)
| 192 | * Mark a message as displayed (useful for external coordination). |
| 193 | */ |
| 194 | markDisplayed(ts: number, text: string, partial: boolean): void { |
| 195 | this.displayedMessages.set(ts, { ts, text, partial }) |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Clear all tracking state. |
no test coverage detected