Interface AggregateErrorConstructor

    interface AggregateErrorConstructor {
        new AggregateErrorConstructor(
            errors: Iterable,
            message?: string,
        ): AggregateError;
        new AggregateErrorConstructor(
            errors: Iterable,
            message?: string,
            options?: ErrorOptions,
        ): AggregateError;
        prototype: AggregateError;
        (errors: Iterable, message?: string): AggregateError;
        (
            errors: Iterable,
            message?: string,
            options?: ErrorOptions,
        ): AggregateError;
    }

    Constructors

    Properties

    Constructors

    Properties

    prototype: AggregateError