Skip to content

Commit

Permalink
Merge pull request #1177 from dhcmrlchtdj/fix-typing
Browse files Browse the repository at this point in the history
Fixing typing issues #1154 #1147
  • Loading branch information
nickuraltsev committed Nov 12, 2017
2 parents ad1195f + f029369 commit d7f021b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.d.ts
Expand Up @@ -14,6 +14,10 @@ export interface AxiosBasicCredentials {
export interface AxiosProxyConfig {
host: string;
port: number;
auth?: {
username: string;
password:string;
}
}

export interface AxiosRequestConfig {
Expand All @@ -40,7 +44,7 @@ export interface AxiosRequestConfig {
maxRedirects?: number;
httpAgent?: any;
httpsAgent?: any;
proxy?: AxiosProxyConfig;
proxy?: AxiosProxyConfig | false;
cancelToken?: CancelToken;
}

Expand Down

0 comments on commit d7f021b

Please sign in to comment.