n8n
Version:
n8n Workflow Automation Tool
21 lines (20 loc) • 433 B
TypeScript
import type { TagEntity, WorkflowTagMapping } from '@n8n/db';
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[];
}