Interface DojoConfig

Dojo configuration for workflows

interface DojoConfig {
    name: string;
    description?: string;
    steps: DojoStep[];
    errorHandling?: "retry" | "stop" | "continue";
    maxRetries?: number;
}

Properties

name: string
description?: string
steps: DojoStep[]
errorHandling?: "retry" | "stop" | "continue"
maxRetries?: number