/** * Generic class type by constructor arguments, prototype (instance) and static part. */ export type Class = { readonly prototype: Prototype; new (...args: ConstructorArgs): Prototype; } & Static;