otris / jsdoc-tsd

JSDoc template for generating TypeScript definition files based on JSDoc comments.
MIT License
29 stars 7 forks source link

Typedefs without types #59

Closed wehrstedt closed 5 years ago

wehrstedt commented 5 years ago

With #58 the handling of typedefs was changed. Before these changes, typedefs without types (@typedef MyTypeDef) were implicit handled as @typedef {object} MyTypeDef. With the refactoring, typedefs without types will no be ignored. Instead an error message will be logged to the console.

TO-DO