6 lines
171 B
TypeScript
6 lines
171 B
TypeScript
|
import type { AxiosPromise, AxiosRequestConfig } from 'axios'
|
||
|
|
||
|
declare function uniappAdapter(config: AxiosRequestConfig): AxiosPromise<any>
|
||
|
|
||
|
export default uniappAdapter
|