flowed
Version:
A fast and reliable flow engine for orchestration and more uses in *Node.js*, *Deno* and the browser
10 lines (9 loc) • 384 B
TypeScript
import { FlowState } from '.';
import { ValueMap, FlowStateEnum } from '../../types';
export declare class FlowRunning extends FlowState {
getStateCode(): FlowStateEnum;
pause(): Promise<ValueMap>;
stop(): Promise<ValueMap>;
finished(error?: Error | boolean): void;
protected postProcessFinished(error: Error | boolean, stopFlowExecutionOnError: boolean): void;
}