| 11 | } |
| 12 | |
| 13 | export interface FlyError { |
| 14 | status: number; |
| 15 | message: string; |
| 16 | engine: XMLHttpRequest; |
| 17 | request?: FlyRequestConfig; |
| 18 | response?: FlyErrResponse; |
| 19 | } |
| 20 | |
| 21 | export interface FlyResponse<T = any> { |
| 22 | data: T; |
nothing calls this directly
no outgoing calls
no test coverage detected