2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00

fix: removing multiple/trailing/leading whitespaces (#5022)

* fix: removing multiple/trailing/leading whitespaces

* Reverting changes in the dist directory

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
Ivan Barsukov
2022-11-25 14:56:31 +01:00
committed by GitHub
parent cac6cfa6f6
commit 786b113a40
7 changed files with 9 additions and 9 deletions
Vendored
+2 -2
View File
@@ -6,7 +6,7 @@ type MethodsHeaders = {
[Key in Method as Lowercase<Key>]: AxiosHeaders;
};
interface CommonHeaders {
interface CommonHeaders {
common: AxiosHeaders;
}
@@ -345,7 +345,7 @@ export interface CreateAxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>
headers?: RawAxiosRequestHeaders | Partial<HeadersDefaults>;
}
export interface AxiosResponse<T = any, D = any> {
export interface AxiosResponse<T = any, D = any> {
data: T;
status: number;
statusText: string;