Get all text content concatenated
()
| 70 | |
| 71 | /** Get all text content concatenated */ |
| 72 | getFullText(): string { |
| 73 | return this.getEventsByType('text') |
| 74 | .map((e) => e.text) |
| 75 | .join('') |
| 76 | } |
| 77 | |
| 78 | /** Get all stream chunks concatenated (strings only) */ |
| 79 | getFullStreamText(): string { |
no test coverage detected