Type alias ConstructorArgs<C>

ConstructorArgs<C>: C extends (new (...args) => any)
    ? A
    : never

Type of the constructor arguments of the provided constructor type.

Type Parameters

  • C