File size: 282 Bytes
95f4e64
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import type { AxiosInstance, AxiosStatic } from 'axios';
import type { CookieJar } from 'tough-cookie';
declare module 'axios' {
    interface AxiosRequestConfig {
        jar?: CookieJar;
    }
}
export declare function wrapper<T extends AxiosStatic | AxiosInstance>(axios: T): T;