Skip to main content
Version: 2.x

Constructable type

@microsoft/fast-element > Constructable

Constructable type

Represents a type which can be constructed with the new operator.

Signature:

export declare type Constructable<T = &#123;&#125;> = {
new (...args: any[]): T;
&#125;;