n8n
Version:
n8n Workflow Automation Tool
6 lines (5 loc) • 351 B
TypeScript
import type { IExecutionResponse } from '@n8n/db';
import type { INode } from 'n8n-workflow';
export declare function getMessage(execution: IExecutionResponse): string | undefined;
export declare function getLastNodeExecuted(execution: IExecutionResponse): INode | undefined;
export declare function shouldResumeImmediately(lastNode: INode): boolean;