* Check if queue is empty (no messages AND no images).
()
| 433 | * Check if queue is empty (no messages AND no images). |
| 434 | */ |
| 435 | isEmpty(): boolean { |
| 436 | return this.messages.length === 0 && this.accumulatedFileParts.length === 0; |
| 437 | } |
| 438 | } |
no outgoing calls
no test coverage detected