Typescript Document Reading

Generic

As we covered in our section on classes, a class has two sides to its type: the static side and the instance side. Generic classes are only generic over their instance side rather than their static side, so when working with classes, static members can not use the class’s type parameter.

原文地址:https://www.cnblogs.com/skating/p/10443682.html