42 lines
653 B
JavaScript
42 lines
653 B
JavaScript
|
import axios from './lib/axios.js';
|
||
|
|
||
|
// This module is intended to unwrap Axios default export as named.
|
||
|
// Keep top-level export same with static properties
|
||
|
// so that it can keep same with es module or cjs
|
||
|
const {
|
||
|
Axios,
|
||
|
AxiosError,
|
||
|
CanceledError,
|
||
|
isCancel,
|
||
|
CancelToken,
|
||
|
VERSION,
|
||
|
all,
|
||
|
Cancel,
|
||
|
isAxiosError,
|
||
|
spread,
|
||
|
toFormData,
|
||
|
AxiosHeaders,
|
||
|
HttpStatusCode,
|
||
|
formToJSON,
|
||
|
mergeConfig
|
||
|
} = axios;
|
||
|
|
||
|
export {
|
||
|
axios as default,
|
||
|
Axios,
|
||
|
AxiosError,
|
||
|
CanceledError,
|
||
|
isCancel,
|
||
|
CancelToken,
|
||
|
VERSION,
|
||
|
all,
|
||
|
Cancel,
|
||
|
isAxiosError,
|
||
|
spread,
|
||
|
toFormData,
|
||
|
AxiosHeaders,
|
||
|
HttpStatusCode,
|
||
|
formToJSON,
|
||
|
mergeConfig
|
||
|
}
|