この記事はTypeScript Advent Calendar 2014の25日目の記事です。 少し早めの公開です。 最後の残り一枠が最終日でした(;・∀・)最終日がんばります。 クラスをインタフェースとして使う typescriptの言語仕様書にこんなことが書かれています。 7.3 Interfaces Extending Classes When an interface type extends a class type it inherits the members of the class but not their implementations. It is as if the interface had declared all of the members of the class without providing an implementation. Interfac