(url: string, headers: Record<string, string>, options?: Partial<RequestOptions>)
| 88 | }, |
| 89 | |
| 90 | async get(url: string, headers: Record<string, string>, options?: Partial<RequestOptions>) { |
| 91 | return doRequest(url, { ...options, method: 'GET', headers }) |
| 92 | }, |
| 93 | } |
| 94 | |
| 95 | export async function fetchWithProxy(input: RequestInfo | URL, init?: RequestInit): Promise<Response> { |
no test coverage detected