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
The @inner tag identifies a symbol that's not exported by a class or module. Here's a example of a module with an inner class:
/** @module foo *//** * Some class. */classMyClass{constructor(){}}
In this example, you don't actually need to use the @inner tag on the class, because JSDoc automatically figures out that it's an inner symbol. It's mostly there for use in virtual doclets, like the first example in the docs.
I'm implementing support for inner in documentation.js and I'm unfortunately very confused about how it is intended to be used.
So far:
inner
. What does this mean?inner
members exist when you create a new instance of a class, like instance members, or do they exist all the time, like static members?Thanks for any help!
The text was updated successfully, but these errors were encountered: