| 1 | export interface FlyRequestConfig extends Object { |
| 2 | url?: string; |
| 3 | method?: string; |
| 4 | baseURL?: string; |
| 5 | headers?: any; |
| 6 | body?: any; |
| 7 | timeout?: number; |
| 8 | withCredentials?: boolean; |
| 9 | parseJson?: boolean; |
| 10 | responseType?: string; |
| 11 | } |
| 12 | |
| 13 | export interface FlyError { |
| 14 | status: number; |
nothing calls this directly
no outgoing calls
no test coverage detected