Replace the in-flight buffer with the accumulated text.
(fullText: string)
| 43 | export interface TextStream { |
| 44 | /** Replace the in-flight buffer with the accumulated text. */ |
| 45 | append(fullText: string): void; |
| 46 | /** Flush the final state and close the stream. */ |
| 47 | finish(): Promise<void>; |
| 48 | } |
no outgoing calls