You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
681 B
43 lines
681 B
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, |
|
getAdapter, |
|
mergeConfig |
|
} = axios; |
|
|
|
export { |
|
axios as default, |
|
Axios, |
|
AxiosError, |
|
CanceledError, |
|
isCancel, |
|
CancelToken, |
|
VERSION, |
|
all, |
|
Cancel, |
|
isAxiosError, |
|
spread, |
|
toFormData, |
|
AxiosHeaders, |
|
HttpStatusCode, |
|
formToJSON, |
|
getAdapter, |
|
mergeConfig |
|
}
|
|
|