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
I have a parent class (not exported) with abstract methods, and a child class (exported) that overrides said abstract methods. In VS Code, my child class "inherits" the ts doc from the parent. Unfortunately, this is not the case in typedoc.
Expected Behavior
Actual Behavior
Steps to reproduce the bug
abstractclassParent{/** * Some function documentation */publicnotAbstract(): string{return'hello';}/** * More function documentation */publicabstractisAbstract(): string;}exportclassChildextendsParent{publicoverridenotAbstract(): string{return'foo';}publicisAbstract(): string{return'bar';}}