Interface RunFlowOptions

interface RunFlowOptions {
    nodeKey?: string;
    input?: any;
    returnImmediately?: boolean;
    onUpdate?: (...args: any) => void;
}

Properties

nodeKey?: string
input?: any
returnImmediately?: boolean
onUpdate?: (...args: any) => void