export type Constructor = new (...args: any[]) => T; export type ConstructorOrAbstract = Function & { prototype: T; }; export type ConstructorAbstractOrInstance = T | ConstructorOrAbstract; //# sourceMappingURL=constructors.d.ts.map