File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,8 +110,8 @@ export interface AxiosInstance {
110110 } ;
111111 request < T = any > ( config : AxiosRequestConfig ) : AxiosPromise < T > ;
112112 get < T = any > ( url : string , config ?: AxiosRequestConfig ) : AxiosPromise < T > ;
113- delete ( url : string , config ?: AxiosRequestConfig ) : AxiosPromise ;
114- head ( url : string , config ?: AxiosRequestConfig ) : AxiosPromise ;
113+ delete < T = any > ( url : string , config ?: AxiosRequestConfig ) : AxiosPromise < T > ;
114+ head < T = any > ( url : string , config ?: AxiosRequestConfig ) : AxiosPromise < T > ;
115115 post < T = any > ( url : string , data ?: any , config ?: AxiosRequestConfig ) : AxiosPromise < T > ;
116116 put < T = any > ( url : string , data ?: any , config ?: AxiosRequestConfig ) : AxiosPromise < T > ;
117117 patch < T = any > ( url : string , data ?: any , config ?: AxiosRequestConfig ) : AxiosPromise < T > ;
You can’t perform that action at this time.
0 commit comments