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 = {}> = {
new (...args: any[]): T;
};