Skip to content

Commit

Permalink
fix(types): removed duplicated code
Browse files Browse the repository at this point in the history
Co-authored-by: Jay <jasonsaayman@gmail.com>
  • Loading branch information
fb-sean and jasonsaayman committed Aug 30, 2023
1 parent 6365751 commit 9e62056
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions index.d.cts
Expand Up @@ -244,10 +244,7 @@ declare namespace axios {
interface AxiosProxyConfig {
host: string;
port: number;
auth?: {
username: string;
password: string;
};
auth?: AxiosBasicCredentials;
protocol?: string;
}

Expand Down
5 changes: 1 addition & 4 deletions index.d.ts
Expand Up @@ -119,10 +119,7 @@ export interface AxiosBasicCredentials {
export interface AxiosProxyConfig {
host: string;
port: number;
auth?: {
username: string;
password: string;
};
auth?: AxiosBasicCredentials;
protocol?: string;
}

Expand Down

0 comments on commit 9e62056

Please sign in to comment.