Open
Description
Description
In the index.ts file (src/index.ts), only the first overload of each function was documented using JSDoc comments. The intention here seems to be that the same comment should be displayed for all overloads, but that is not how (most?) editors work.
For example, the @deprecated
warning for plainToClass
does not appear for the second and third overload.
Minimal code-snippet showcasing the problem
class-transformer/src/index.ts
Lines 12 to 24 in a073b5e
Expected behavior
Every function should be documented individually.
Actual behavior
Deprecated overloads are not displayed as such in editors.