| 33 | } |
| 34 | |
| 35 | export interface RefetchFunction<TBody, TResponse> { |
| 36 | ( |
| 37 | config?: AxiosRequestConfig<TBody> | string, |
| 38 | options?: RefetchOptions |
| 39 | ): AxiosPromise<TResponse> |
| 40 | (e: Event): AxiosPromise<TResponse> |
| 41 | } |
| 42 | |
| 43 | export type UseAxiosResult<TResponse = any, TBody = any, TError = any> = [ |
| 44 | ResponseValues<TResponse, TBody, TError>, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…