/**
 * A class whose instances are of type T. The class may be abstract.
 */
export default interface Class<T> {
  prototype: T;
}
