UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 295 B
import type { INode } from 'n8n-workflow'; export interface NodeMigrationResult { node: Pick<INode, 'type' | 'typeVersion' | 'parameters'>; unmapped?: string[]; notes?: string[]; } export interface NodeMigration { ruleId: string; migrate(node: INode): NodeMigrationResult; }