export type Constructor = new (...args: any[]) => T; export interface Constructable { constructor: Function; // tslint:disable-line:ban-types }