We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Is your feature request related to a problem? Please describe.
I wish to have support for a more comprehensive comment format to allow runtime type checking with the TypeScript compiler.
Describe the solution you'd like
Support multi-line JSDoc comments like this:
/** * Provides: xxxxx * Requires: xxxxx */ function xxxxx(x1, x2) { ... }
/** * @param {string} x1 - A string param. * @param {string} [x2] - An optional param (JSDoc syntax). * @returns {number} This is the result. * Provides: xxxxx * Requires: xxxxx */ function xxxxx(x1, x2) { ... }
Ref: https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html
Describe alternatives you've considered
I'm looking for your comments to get better ideas!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
I wish to have support for a more comprehensive comment format to allow runtime type checking with the TypeScript compiler.
Describe the solution you'd like
Support multi-line JSDoc comments like this:
Ref: https://www.typescriptlang.org/docs/handbook/jsdoc-supported-types.html
Describe alternatives you've considered
I'm looking for your comments to get better ideas!
The text was updated successfully, but these errors were encountered: