@deskcreate/agentcraft
    Preparing search index...

    Interface WorkflowStep

    Executable workflow step contract implemented by all step factories.

    interface WorkflowStep {
        stepId: string;
        type: string;
        execute(ctx: WorkflowContext): Promise<unknown>;
    }
    Index

    Properties

    Methods

    Properties

    stepId: string
    type: string

    Methods