export interface Constructable<T> {
	new (...args: any[]): T;
}
