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