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
Following worked for me:
type ClassRef = new (...args: any[]) => any;
my use case:
interface InteractionType { [key: string]: ClassRef; }