mirror of
https://github.com/tenrok/axios.git
synced 2026-06-20 20:00:40 +03:00
fix(types): removed duplicated code
Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
+1
-4
@@ -244,10 +244,7 @@ declare namespace axios {
|
|||||||
interface AxiosProxyConfig {
|
interface AxiosProxyConfig {
|
||||||
host: string;
|
host: string;
|
||||||
port: number;
|
port: number;
|
||||||
auth?: {
|
auth?: AxiosBasicCredentials;
|
||||||
username: string;
|
|
||||||
password: string;
|
|
||||||
};
|
|
||||||
protocol?: string;
|
protocol?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
-4
@@ -119,10 +119,7 @@ export interface AxiosBasicCredentials {
|
|||||||
export interface AxiosProxyConfig {
|
export interface AxiosProxyConfig {
|
||||||
host: string;
|
host: string;
|
||||||
port: number;
|
port: number;
|
||||||
auth?: {
|
auth?: AxiosBasicCredentials;
|
||||||
username: string;
|
|
||||||
password: string;
|
|
||||||
};
|
|
||||||
protocol?: string;
|
protocol?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user