UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 681 B
import type { WorkflowCredentialRequirement } from './credential/credential.types'; import type { WorkflowDataTableRequirement } from './data-table/data-table.types'; import type { WorkflowVariableRequirement } from './variable/variable.types'; import type { WorkflowNodeTypeSource } from './workflow/node-type-usage'; export interface WorkflowExportRequirements { credentials: WorkflowCredentialRequirement[]; dataTables: WorkflowDataTableRequirement[]; variables: WorkflowVariableRequirement[]; nodeTypes: WorkflowNodeTypeSource[]; } export declare const mergeRequirements: (...parts: Array<WorkflowExportRequirements | undefined>) => WorkflowExportRequirements;