(status: string)
| 325 | public getHeader() {} |
| 326 | |
| 327 | public writeStatus(status: string) { |
| 328 | if (this.isAborted) return; |
| 329 | |
| 330 | this.res.writeStatus(status); |
| 331 | this.statusWritten = true; |
| 332 | this.writeBufferedHeaders(); |
| 333 | return this; |
| 334 | } |
| 335 | |
| 336 | public writeHeader(key: string, value: string) { |
| 337 | if (this.isAborted) return; |
no test coverage detected