Type alias Constructable<T>

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

Defines an object that has a constructor. Used internally to create endpoints/connectors/overlays from their names. Exposed as public for people to create their own endpoints/connectors/overlays.

Type Parameters

  • T

Type declaration

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

      • Rest ...args: any[]

      Returns T