-
-
Notifications
You must be signed in to change notification settings - Fork 736
entry point restricting class member documentation #388
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 for following up! After looking through the tickets and trying different combos of Notice that the content section is empty (the menu renders all the way to the left) Then when it correctly documents These particular screen shots were form docs generated with the following (though I tried many combos with internal and in the Main module as well): /**
* @hidden
*/
export default class Thing2 {
/**
* @hidden
*/
fn() {
console.log('so hidden');
}
} Is there perhaps something that I am missing? Thanks again for taking a look! |
Related to #250 |
would be nice to have such behavior :) |
Closing in favor of #639 |
I believe this is similar to both issue 186 and issue 172 but it may warrant a ticket itself.
My goal is to generate docs for a library with a single entry point that documents the public methods and properties (from the root's perspective) while excluding modules that may be used internally.
For example (in the snippet below) if
Main
is to be my entry point I would wantthing1
in the Properties section ofMain
's generated documentation to be a link to theThing1
class. This is the case if I generate the docs without theentryPoint
flag. The issue is that the unwantedThing2
is also documented (even with--excludePrivate
it ends up in theExternals
section). If I generate with with theentryPoint
flag theThing1
link in the Properties section just becomes a link back to the main page.Is there some combo of flags / settings that I am overlooking that allows me to have docs generated from an entry point's perspective allowing links to properties without documenting all Externals? Apologies for taking your time if this is already possible!
An example repo
The text was updated successfully, but these errors were encountered: