UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 247 B
import type { TagEntity } from './tag-entity'; import type { WorkflowEntity } from './workflow-entity'; export declare class WorkflowTagMapping { workflowId: string; workflows: WorkflowEntity[]; tagId: string; tags: TagEntity[]; }