durable-execution - v0.8.0
    Preparing search index...

    Type Alias DurableChildTaskExecutionOutput<TOutput>

    A child task output of a durable task.

    type DurableChildTaskExecutionOutput<TOutput = unknown> = {
        index: number;
        taskId: string;
        executionId: string;
        output: TOutput;
    }

    Type Parameters

    • TOutput = unknown
    Index

    Properties

    index: number
    taskId: string
    executionId: string
    output: TOutput