| 29 | } |
| 30 | |
| 31 | export interface AxiosLikeInstance { |
| 32 | request<TData = unknown>( |
| 33 | config: AxiosLikeRequestConfig |
| 34 | ): Promise<AxiosLikeResponse<TData>>; |
| 35 | } |
| 36 | |
| 37 | export interface ApiBridgeOptions { |
| 38 | transport?: ApiBridgeTransportName; |
no outgoing calls
no test coverage detected