2
0
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:
Sean Sattler
2023-08-30 20:29:27 +02:00
committed by GitHub
parent 6365751ba6
commit 9e6205630e
2 changed files with 2 additions and 8 deletions
+1 -4
View File
@@ -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
View File
@@ -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;
} }