This message was deleted.
# typescript
s
This message was deleted.
f
I’ve never actually seen an implicit super for an inherited class? I got curious and reading the TS handbook, that doesn’t seem to be the case? https://www.typescriptlang.org/docs/handbook/classes.html#inheritance
One difference from the prior example is that each derived class that contains a constructor function must call 
super()
 which will execute the constructor of the base class. What’s more, before we ever access a property on 
this
 in a constructor body, we have to call 
super()
. This is an important rule that TypeScript will enforce.
m
Hmm, okay I think this is actually more related to an ESLint rule I misunderstood. Thanks for helping me clarify, I’ve disabled the rule.