Home > @poq/transform > Ctor
Type utility to define class/type constructors.
Signature:
export declare type Ctor<T extends { constructor: Function; } = { constructor: Function; }> = new (...args: any) => Unpack<T>;