Interface TypeErrorConstructor

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

    Constructors

    Properties

    Constructors

    Properties

    prototype: TypeError