Lets say you have an interface then classes that implement it.
interface A { /*do stuff*/ }
class B implements A { /*do stuff*/ }
class C implements A { /*do stuff*/ }
Then if you have a variable that can store the class type, not a specific instance of an object, what do you put as the type?
let x: Something = B; // or C
I know for objects you can use typeof, but for interfaces you can't. However I am able to specify variables to store implementations of interfaces so I don't see why I shouldn't be able to store classes of an interface.