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