@ekhein/http-request 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekhein/http-request",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "license": "MIT",
5
5
  "author": "ekhein",
6
6
  "main": "./dist/main.js",
@@ -41,7 +41,7 @@ export interface ExtendAxiosRequestConfig extends Record<string, any> {
41
41
  }
42
42
  }
43
43
 
44
- export interface HttpRequestConfig extends AxiosRequestConfig, ExtendAxiosRequestConfig {}
44
+ export interface HttpRequestConfig extends ExtendAxiosRequestConfig, AxiosRequestConfig {}
45
45
 
46
- export interface HttpResponse extends AxiosResponse, ExtendAxiosResponse {}
46
+ export interface HttpResponse extends ExtendAxiosResponse {}
47
47