source: frontend/node_modules/axios/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 704 bytes
RevLine 
[9af201e]1import axios from './lib/axios.js';
2
3// This module is intended to unwrap Axios default export as named.
4// Keep top-level export same with static properties
5// so that it can keep same with es module or cjs
6const {
7 Axios,
8 AxiosError,
9 CanceledError,
10 isCancel,
11 CancelToken,
12 VERSION,
13 all,
14 Cancel,
15 isAxiosError,
16 spread,
17 toFormData,
18 AxiosHeaders,
19 HttpStatusCode,
20 formToJSON,
21 getAdapter,
22 mergeConfig,
23 create,
24} = axios;
25
26export {
27 axios as default,
28 create,
29 Axios,
30 AxiosError,
31 CanceledError,
32 isCancel,
33 CancelToken,
34 VERSION,
35 all,
36 Cancel,
37 isAxiosError,
38 spread,
39 toFormData,
40 AxiosHeaders,
41 HttpStatusCode,
42 formToJSON,
43 getAdapter,
44 mergeConfig,
45};
Note: See TracBrowser for help on using the repository browser.