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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While this is supported and docs for it generate fine:
class Square extends Rectangle { constructor({width}) { super({width, height: width}); } }
This syntax doesn't seem to be supported and the docs generated for it say it is a "variable" and not a class:
const Square = class extends Rectangle { constructor({width}) { super({width, height: width}); } };
Note that JSDoc supports both class declarations and expressions: https://jsdoc.app/howto-es2015-classes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While this is supported and docs for it generate fine:
This syntax doesn't seem to be supported and the docs generated for it say it is a "variable" and not a class:
Note that JSDoc supports both class declarations and expressions: https://jsdoc.app/howto-es2015-classes
The text was updated successfully, but these errors were encountered: