n8n
Version:
n8n Workflow Automation Tool
6 lines (5 loc) • 383 B
TypeScript
import { type IRun } from 'n8n-workflow';
import type { ActiveExecutions } from '../../../active-executions';
import type { McpService } from '../../../modules/mcp/mcp.service';
export declare const WORKFLOW_EXECUTION_TIMEOUT_MS: number;
export declare const waitForExecutionResult: (executionId: string, activeExecutions: ActiveExecutions, mcpService: McpService) => Promise<IRun>;