/**
 * An interface for an object with constructor.
 *
 * @ignore Exclude from docs
 */
export interface Constructor<A> {
    new (): A;
}
