Interface EvalErrorConstructor

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

    Constructors

    Properties

    Constructors

    Properties

    prototype: EvalError