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
In angular, I have class extends class extends another class, I cannot see the properties of the 3rd class when I am viewing the first class, I can only see the properties defined in the second class in the first class
Motivation for or Use Case
Complete the feature? :D
class A extends B {
aVar: any;
}
class B extends C {
bVar: any;
}
class C {
cVar: any;
}
when viewing the doc for class A, I'd see aVar and bVar but no cVar. This issue is also for methods, etc...