| 1 | export interface HTTPRequestLike { |
| 2 | method?: string; |
| 3 | url?: string; |
| 4 | headers: Record<string, string | string[] | undefined>; |
| 5 | on(event: "data", listener: (chunk: string | { toString(): string }) => void): void; |
| 6 | on(event: "end", listener: () => void): void; |
| 7 | on(event: "error", listener: (error: Error) => void): void; |
| 8 | } |
| 9 | |
| 10 | export interface HTTPResponseLike { |
| 11 | statusCode: number; |
nothing calls this directly
no outgoing calls
no test coverage detected