/** * Type definition of a class constructor. */ export type ConstructorOf = { new(): T; };