| 560 | type Body = Record<string, any>; |
| 561 | |
| 562 | interface Response { |
| 563 | body: any; |
| 564 | headers: Headers; |
| 565 | status: number; |
| 566 | uri?: string; |
| 567 | } |
| 568 | |
| 569 | function head(url: string, headers?: Headers): Promise<Headers>; |
| 570 | function get(url: string, body?: Body, headers?: Headers): Promise<Response["body"]>; |
nothing calls this directly
no outgoing calls
no test coverage detected