/** * Generic constructor type */ type Constructor = new (...args: any[]) => T; export type { Constructor };