You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I looked around, I noticed that all members of a class are exported regardless if the member is public or private.
As far as I now, fliegdoc should only generate documentation for exported types.
Is a private member of a class an exported type?
For example, we have the following class:
exportclassMyClass{/** * This is my private value! */privatemyPrivateValue: string;/** * this is my public function hello! */myFunction(): void{console.log('Hello World');}}
As I looked around, I noticed that all members of a class are exported regardless if the member is public or private.
As far as I now, fliegdoc should only generate documentation for exported types.
Is a private member of a class an exported type?
For example, we have the following class:
Which generates to:
Any ideas? :)
Originally posted by @fussel178 in #5
The text was updated successfully, but these errors were encountered: