output-sdk
    Preparing search index...

    Type Alias ParallelJobResult<T>

    ParallelJobResult:
        | { index: number; ok: true; result: T }
        | { error: unknown; index: number; ok: false }

    Result of a single job executed by executeInParallel.

    Type Parameters

    • T

      The return type of the job function