map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface JoinError

    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>;
    }
    Index

    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.