Type Alias AnyConstructor<T>

AnyConstructor<T>: (new (...args: any[]) => T)

A constructor for any type T. T defaults to object when not explicitly supplied.

Type Parameters

  • T = object