Newer
Older
smartwell_front / src / axios.d.ts
lyg on 27 Jun 138 bytes v3项目初始化
import * as axios from 'axios'

declare module 'axios' {
  interface AxiosInstance {
    (config: AxiosRequestConfig): Promise<any>
  }
}