Represents the error value in promises returned by the join function if at least one promise fails with an error.

interface JoinError {
    all: any[];
    error: any;
    errors: Record<number, any>;
}

Properties

Properties

all: any[]

The results in the same order as the input promises.

error: any

The first error

errors: Record<number, any>

All errors.