Set default api request/response types to any

This commit is contained in:
Vasili Karaev 2021-08-05 12:31:56 +03:00
parent 97aff64d23
commit 0dd9701ceb
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class ApiMethodFactory {
return `${path}?${query}`
}
make = <R, T = null>(
make = <R = any, T = any>(
template: string,
method: HttpMethod = HttpMethod.GET, {
path: pathKeys = [],