Feed the next SSE/stream chunk and get the latest ParseResult.
(chunk: string)
| 428 | export interface StreamParser { |
| 429 | /** Feed the next SSE/stream chunk and get the latest ParseResult. */ |
| 430 | push(chunk: string): ParseResult; |
| 431 | /** Set the full text — diffs against internal buffer, pushes only the delta. |
| 432 | * Resets automatically if the text was replaced (not appended). */ |
| 433 | set(fullText: string): ParseResult; |
no outgoing calls