n8n
Version:
n8n Workflow Automation Tool
7 lines (6 loc) • 436 B
TypeScript
import { type INode } from 'n8n-workflow';
import type { EntityReference } from '../../reference';
import type { WorkflowSubWorkflowRequirement } from '../workflow.types';
export declare const subWorkflowNodeReference: EntityReference<WorkflowSubWorkflowRequirement>;
export declare function getStaticSubworkflowId(node: INode): string | undefined;
export declare function setStaticSubworkflowId(node: INode, workflowId: string): void;