UNPKG

n8n-nodes-variables

Version:

n8n community node for managing typed global variables accessible from any workflow stage - like programming language variables with strong typing support

6 lines (5 loc) 282 B
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class WorkflowVariables implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }