Type alias Constructor<T>

Constructor<T>: (new (...args) => T)

Represents a constructor function type that creates an instance of type T.

Type Parameters

  • T

    The type of object to be constructed.

Type declaration

    • new (...args): T
    • Parameters

      • Rest ...args: never[]

      Returns T

Returns

  • The object constructed.

Generated using TypeDoc