devtypes - v1.1.0
    Preparing search index...

    Type Alias AbstractConstructor<T>

    AbstractConstructor: abstract new (...args: any[]) => T

    Create an abstract constructor (no instantiation check).

    Type Parameters

    • T

      The instance type

    Represents a class type that cannot be instantiated directly. Commonly used in abstract class hierarchies or for type constraints.

    type BaseCtor = AbstractConstructor< Base >;