* Makes an HTTP request. * @param path The URL path to make a request to * @param init The request init. See init here: * https://developer.mozilla.org/en-US/docs/Web/API/Request/Request
(path: string, requestInits?: RequestInit, options?: RequestDetails)
| 30 | * https://developer.mozilla.org/en-US/docs/Web/API/Request/Request |
| 31 | */ |
| 32 | fetch(path: string, requestInits?: RequestInit, options?: RequestDetails): |
| 33 | Promise<Response>; |
| 34 | |
| 35 | /** |
no outgoing calls
no test coverage detected