(res: http.ServerResponse, statusCode: number, body: unknown)
| 1174 | } |
| 1175 | |
| 1176 | private json(res: http.ServerResponse, statusCode: number, body: unknown): void { |
| 1177 | res.statusCode = statusCode; |
| 1178 | res.setHeader("content-type", "application/json"); |
| 1179 | res.end(JSON.stringify(body)); |
| 1180 | } |
| 1181 | } |