n8n
Version:
n8n Workflow Automation Tool
6 lines (5 loc) • 524 B
TypeScript
import type { IRunExecutionData, IPinData, IWorkflowBase } from 'n8n-workflow';
import type { MockedNodeItem } from '../../databases/entities/test-definition.ee';
import type { WorkflowEntity } from '../../databases/entities/workflow-entity';
export declare function createPinData(workflow: WorkflowEntity, mockedNodes: MockedNodeItem[], executionData: IRunExecutionData, pastWorkflowData?: IWorkflowBase): IPinData;
export declare function getPastExecutionTriggerNode(executionData: IRunExecutionData): string | undefined;