UNPKG

n8n

Version:

n8n Workflow Automation Tool

22 lines (21 loc) 533 B
import type { TagEntity } from '../../../databases/entities/TagEntity'; import type { WorkflowTagMapping } from '../../../databases/entities/WorkflowTagMapping'; export interface ImportResult { workflows: Array<{ id: string; name: string; }>; credentials: Array<{ id: string; name: string; type: string; }>; variables: { imported: string[]; }; tags: { tags: TagEntity[]; mappings: WorkflowTagMapping[]; }; removedFiles?: string[]; }