Type alias Newable

Newable: (new (...args) => any)

This type is used to describe constructor functions or classes that can be invoked using the new keyword.

Type declaration

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

      • Rest ...args: any[]

      Returns any