export type Constructor = new (...args: any[]) => T; export type AbstractConstructor = abstract new (...args: any[]) => T;