Hi, the axios library has changed the AxiosRequestConfig interface from
export interface AxiosRequestConfig {
url?: string;
method?: string;
to
export interface AxiosRequestConfig {
url?: string;
method?: Method;
So client generation do generate an error when using tslint with axios 0.19.* :

BR.