In Java, you can give a class to a method as a parameter using the type \"Class\". I didn\'t find anything similar in the typescript docs - is it possible to hand a class to
The simplest solution would be let variable: typeof Class.
let variable: typeof Class
Here an example:
class A { public static attribute = "ABC"; } function f(Param: typeof A) { Param.attribute; new Param(); } f(A);