Skip to main content
Version: 1.x

@microsoft/fast-element > Constructable

Constructable type

Allows for the creation of Constructable mixin classes.

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