@deskcreate/agentcraft
    Preparing search index...

    Interface WorkflowRunOptions<TInput>

    Options passed to workflow.run().

    interface WorkflowRunOptions<TInput> {
        _resumeFrom?: WorkflowResumeState;
        input: TInput;
    }

    Type Parameters

    • TInput
    Index

    Properties

    Properties

    _resumeFrom?: WorkflowResumeState

    Used by resume() to continue from persisted completed steps.

    input: TInput