| 43 | clear(): void; |
| 44 | } |
| 45 | export interface FlyResponseInterceptor<V> { |
| 46 | use(onSucceed?: (response: V) => any, onError?: (err: Error) => any): void; |
| 47 | lock(): void; |
| 48 | unlock(): void; |
| 49 | |
| 50 | clear(): void; |
| 51 | } |
| 52 | |
| 53 | export interface Fly { |
| 54 | config: FlyRequestConfig; |