| 3 | // -------------------------- |
| 4 | |
| 5 | export interface $Fetch { |
| 6 | <T = any, R extends ResponseType = "json">( |
| 7 | request: FetchRequest, |
| 8 | options?: FetchOptions<R> |
| 9 | ): Promise<MappedResponseType<R, T>>; |
| 10 | raw<T = any, R extends ResponseType = "json">( |
| 11 | request: FetchRequest, |
| 12 | options?: FetchOptions<R> |
| 13 | ): Promise<FetchResponse<MappedResponseType<R, T>>>; |
| 14 | native: Fetch; |
| 15 | create(defaults: FetchOptions, globalOptions?: CreateFetchOptions): $Fetch; |
| 16 | } |
| 17 | |
| 18 | // -------------------------- |
| 19 | // Options |
no outgoing calls
no test coverage detected
searching dependent graphs…