Newer
Older
CorrOLFront / src / axios.d.ts
tanyue on 5 Mar 2024 138 bytes 20240305 初始提交
import * as axios from 'axios'

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