TypeScript Abstract Class

A TypeScript Abstract class is a class which may have some unimplemented methods. These methods are called abstract methods. We can’t create an instance of an abstract class. But other classes can derived from abstract class and reuse the functionality of base class. TypeScript Interface vs Abstract Class Interface Abstract Class All …

TypeScript Abstract Class Read More