flowed
Version:
A fast and reliable flow engine for orchestration and more uses in *Node.js*, *Deno* and the browser
8 lines (7 loc) • 312 B
TypeScript
import { FlowState } from '.';
import { FlowStateEnum } from '../../types';
export declare class FlowStopping extends FlowState {
getStateCode(): FlowStateEnum;
stopped(error?: Error | boolean): void;
protected postProcessFinished(error: Error | boolean, _stopFlowExecutionOnError: boolean): void;
}