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

    Type Alias InferTaskInput<TTask>

    InferTaskInput: TTask extends Task<infer I, unknown> ? I : never

    TypeScript utility type to extract the input type from a Task.

    Type Parameters

    type EmailInput = InferTaskInput<typeof emailTask>
    // Result: { to: string, subject: string }