Interface IConstructor<TResult>

Represents a type with a constructor

interface IConstructor<TResult> {
    new IConstructor(...args: any[]): TResult;
    prototype: TResult;
}

Type Parameters

  • TResult

Hierarchy (View Summary)

Constructors

Properties

Constructors

Properties

prototype: TResult