Interface RangeErrorConstructor

    interface RangeErrorConstructor {
        new RangeErrorConstructor(message?: string): RangeError;
        new RangeErrorConstructor(
            message?: string,
            options?: ErrorOptions,
        ): RangeError;
        new RangeErrorConstructor(message?: string): Error;
        new RangeErrorConstructor(message?: string, options?: ErrorOptions): Error;
        prototype: RangeError;
        (message?: string): RangeError;
        (message?: string, options?: ErrorOptions): RangeError;
        (message?: string): Error;
        (message?: string, options?: ErrorOptions): Error;
    }
    Hierarchy

    Constructors

    Properties

    Constructors

    Properties

    prototype: RangeError