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

    Type Alias CompletedChildTaskExecution<TOutput>

    A completed child task execution.

    type CompletedChildTaskExecution<TOutput = unknown> = {
        taskId: string;
        executionId: string;
        status: "completed";
        output: TOutput;
    }

    Type Parameters

    • TOutput = unknown
    Index

    Properties

    taskId: string
    executionId: string
    status: "completed"
    output: TOutput