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

    Type Alias DurableTaskOnChildrenCompleteInput<TInput, TRunOutput>

    The input type for the on children complete task.

    type DurableTaskOnChildrenCompleteInput<TInput = unknown, TRunOutput = unknown> = {
        input: TInput;
        output: TRunOutput;
        childrenTasksOutputs: DurableChildTaskExecutionOutput[];
    }

    Type Parameters

    • TInput = unknown
    • TRunOutput = unknown
    Index

    Properties

    input: TInput
    output: TRunOutput
    childrenTasksOutputs: DurableChildTaskExecutionOutput[]