If I have a class listView that has documentation and I put it in a dictionary:
/** Handles list models */
class listView{}
const views = { list: listView }
Then the property/key list doesn't have any documentation or intellisense. Is there a way for me to have it show parentView's documentation without copying it?
Edit: One way that can work is to define the class within the object:
const views = {
/** Handles list models */
list: class{ }
}
But if a better solution exists, please let me know.