// @ts-nocheck import request from './request' import {AxiosRequestConfig} from "axios"; export interface AxiosRequestConfigV2 extends AxiosRequestConfig { showLoading?: boolean } const requestV2 = (options: AxiosRequestConfigV2): Promise => { // @ts-ignore return request(options) } export default requestV2