Home > @jsplumb/util > Constructable
#
Constructable typeDefines 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;};