-
Notifications
You must be signed in to change notification settings - Fork 712
New issue
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
Re-exported individual named modules don't show up #2811
Comments
If that's the case, it sounds like a possible bug, however a quick attempt at reproducing it does not show this issue. TypeStrong/typedoc-repros#46, If |
Ok, this was kind of hard to reproduce with a minimal example. It's quite bizarre. I created an example that shows this and a short explanation: TypeStrong/typedoc-repros#47 I hope this helps. I think it should be marked as a bug. |
Perfect, thanks! That is a strange one. What's happening here is that TypeDoc creates a reference in index which points to the reference in index-debug, which gets removed by |
Search terms
re-export
Question
Not sure if that's a bug, or I'm misunderstanding something.
If a module re-exports everything from another using
export * from "some-module"
, then all of some-module's exports will show as re-exports in the doc for that module. However if I doexport { something } from "some-module"
, nothing shows up. Why is that? How can I include in the doc a particular named re-export?The text was updated successfully, but these errors were encountered: