Newer
Older
sensorHubPlusFront / src / axios.d.ts
tanyue on 27 Nov 2023 138 bytes 20231127 初始提交
import * as axios from 'axios'

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