12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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
- }
|