UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 733 B
import type { BreakingChangeAffectedWorkflow, BreakingChangeRecommendation } from '@n8n/api-types'; import type { WorkflowEntity } from '@n8n/db'; import type { INode } from 'n8n-workflow'; import type { BreakingChangeRuleMetadata, IBreakingChangeWorkflowRule, WorkflowDetectionReport } from '../../types'; export declare class StartNodeRemovedRule implements IBreakingChangeWorkflowRule { private readonly START_NODE_TYPE; id: string; getMetadata(): BreakingChangeRuleMetadata; getRecommendations(_workflowResults: BreakingChangeAffectedWorkflow[]): Promise<BreakingChangeRecommendation[]>; detectWorkflow(_workflow: WorkflowEntity, nodesGroupedByType: Map<string, INode[]>): Promise<WorkflowDetectionReport>; }