mwbot-ts - v1.2.7
    Preparing search index...

    Type Alias PrototypeOf<T>Private

    Utility type that describes a class definition whose prototype matches a specific instance type.

    This is used internally to connect a class constructor with its corresponding instance type in a safe and type-checkable way.

    type PrototypeOf<T> = {
        prototype: T;
    }

    Type Parameters

    • T

      The instance type associated with the class.

    Index

    Properties

    Properties

    prototype: T