-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
On private members and overrides #9
Comments
Thanks for the report, after I finish my proto -> ts stuff I'll hope back onto my write here and ensure this gets fixed. |
This was referenced Nov 16, 2016
Closed
Got this fixed in v2, unfortunately there are some jsdoc bugs that make this not work 100%:
|
Just released |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a config here that reads
When I run this with tsd-jsdoc, it generates definitions for private members with a leading
_
, which will, on a production build, be renamed to something random. Is there another way to exclude them?Also, when I
/** @override */
a method with a different signature, the overridden signature seems not to be included in the output. Let's say I have aReader
that works with array-like objects and aBufferReader
that partly requires a proper buffer, then this would be valuable information for a type checker.The text was updated successfully, but these errors were encountered: