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

    Type Alias DurableChildTask<TInput, TOutput>

    A child task of a durable task.

    type DurableChildTask<TInput = unknown, TOutput = unknown> = {
        task: DurableTask<TInput, TOutput>;
        input: TInput;
        options?: DurableTaskEnqueueOptions;
    }

    Type Parameters

    • TInput = unknown
    • TOutput = unknown
    Index

    Properties

    Properties

    input: TInput