The Role of Interfaces in TypeScript
0 comments
/
posted by
Silverlight Show
on
Jan 10, 2013 (4 months ago)
Read original post at Dan Wahlin's WebLog In my last post I talked about how classes and interfaces could be extended in the TypeScript language. By using TypeScript’s extends keyword you can easily create derived classes that inherit functionality from a base class. You can also use the extends keyword to extend existing interfaces and create new ones. In the previous post I showed an example of ...