Skip to main content

Home > @jsplumb/util > Constructable

Constructable type#

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.

Signature:

export declare type Constructable<T> = {    new (...args: any[]): T;};