-
-
Notifications
You must be signed in to change notification settings - Fork 734
When exporting multiple functions in one object the docs aren't generated #1050
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
Comments
Thanks! |
Similar experience with using
...generates API documentation for the functions.
...generates no API documentation. |
#801 should fix this |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When using
export const x = { ref1, ref2 };
the docs don't contain the/** */
from the implementation ofref1
andref2
. I'm using the flag--excludeNotExported
to not export all private functions.Expected Behavior
When using the following construct, the docs that are generated should include the docs that come from the comments above the implementation of the function.
Actual Behavior
It doesn't show the documentation when exporting through an object with a reference to the functions.
Environment
The text was updated successfully, but these errors were encountered: