2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-23 20:40:40 +03:00

fix: keep compatability with other changes

This commit is contained in:
Jay
2022-10-07 10:24:18 +02:00
parent 2149464bb4
commit a46beab152
12 changed files with 30 additions and 21 deletions
+12 -1
View File
@@ -1,2 +1,13 @@
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 default axios;
export {
axios as default,
Axios,
AxiosHeaders,
AxiosError,
CanceledError,
};