Daniele Paggi
Results
2
issues of
Daniele Paggi
Hello everybody! The example code, in the documentation, for ResponseTransformer decorator is wrong: https://github.com/nullcc/ts-retrofit#responsetransformer Best regards and have a nice day, Daniele
Hello, I've the following api service's method: ``` @POST('/my-custom-url') @Multipart async uploadFileFromBrowser(@Part('file') file: PartDescriptor): Promise { return {} as Response; } ``` I'm calling it (from an Angular project) with...