/** * Type definition of a class constructor. */ export type ConstructorOf = { new(): T; }; /** * Type definition of an original object overridden by another. */ export type Modify = Omit & Override;