Interface DojoStep

Dojo workflow step

interface DojoStep {
    id: string;
    type: "condition" | "parallel" | "shinobi" | "kata" | "clan";
    config: any;
    condition?: ((context) => boolean);
    onError?: "retry" | "stop" | "continue";
}

Properties

id: string
type: "condition" | "parallel" | "shinobi" | "kata" | "clan"
config: any
condition?: ((context) => boolean)

Type declaration

    • (context): boolean
    • Parameters

      • context: any

      Returns boolean

onError?: "retry" | "stop" | "continue"