Writes a chunk of data to the response.
(data: string | Buffer)
| 172 | setHeader(key: string, value: string): void; |
| 173 | /** Writes a chunk of data to the response. */ |
| 174 | write(data: string | Buffer): void; |
| 175 | /** Ends the response, must be called once at the end of writing. */ |
| 176 | end(data: string | Buffer): void; |
| 177 | } |