no1b4me's picture
Upload 5037 files
95f4e64 verified
raw
history blame contribute delete
282 Bytes
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;