Handling Abstract Properties in Extended Classes Using Class API
Using the Class API, how do you folks deal with
In the above example, I've commented out the
Base.extend swallowing abstract properties?In the above example, I've commented out the
title implementation in the Doctor class, but TypeScript doesn't care. It seems that Human.extend() returns a class that pretends to implement title, but really doesn't.