I’m looking for the best approach to detect changes in properties declared in extended classes in Angular. These changes are not detected by ngOnChanges because they’re not inputs.
I’ve currently implemented ngDoCheck, which works, but I’m curious if there’s a better approach that could potentially improve performance.