| 162 | } |
| 163 | |
| 164 | export interface Request extends http.IncomingMessage { |
| 165 | body: unknown; |
| 166 | parsed: URL; |
| 167 | queryParams: Record<string, unknown>; |
| 168 | } |
| 169 | |
| 170 | export type Response = http.ServerResponse; |
| 171 |
nothing calls this directly
no outgoing calls
no test coverage detected