1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| 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
| }
|
|