| 92 | // -------------------------- |
| 93 | |
| 94 | export interface FetchContext<T = any, R extends ResponseType = ResponseType> { |
| 95 | request: FetchRequest; |
| 96 | options: ResolvedFetchOptions<R>; |
| 97 | response?: FetchResponse<T>; |
| 98 | error?: Error; |
| 99 | } |
| 100 | |
| 101 | type MaybePromise<T> = T | Promise<T>; |
| 102 | type MaybeArray<T> = T | T[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…