2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-05 16:42:32 +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 {
host: string;
port: number;
auth?: {
username: string;
password: string;
};
auth?: AxiosBasicCredentials;
protocol?: string;
}
Vendored
+1 -4
View File
@@ -119,10 +119,7 @@ export interface AxiosBasicCredentials {
export interface AxiosProxyConfig {
host: string;
port: number;
auth?: {
username: string;
password: string;
};
auth?: AxiosBasicCredentials;
protocol?: string;
}