2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-17 19:21:29 +03:00

fix: revert named exports

This commit is contained in:
Jay
2022-10-07 10:43:43 +02:00
parent a46beab152
commit 9fc94b7dcd
2 changed files with 1 additions and 15 deletions
+1 -12
View File
@@ -1,13 +1,2 @@
import Axios from './lib/core/Axios.js';
import AxiosHeaders from './lib/core/AxiosHeaders.js';
import AxiosError from './lib/core/AxiosError.js';
import CanceledError from './lib/cancel/CanceledError.js';
import axios from './lib/axios.js';
export {
axios as default,
Axios,
AxiosHeaders,
AxiosError,
CanceledError,
};
export default axios;