Poq.SDK.Node

Home > @poq/transform > Ctor

Ctor type

Type utility to define class/type constructors.

Signature:

export declare type Ctor<T extends {
    constructor: Function;
} = {
    constructor: Function;
}> = new (...args: any) => Unpack<T>;