UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 350 B
import { WithTimestampsAndStringId } from './abstract-entity'; import type { WorkflowEntity } from './workflow-entity'; import type { WorkflowTagMapping } from './workflow-tag-mapping'; export declare class TagEntity extends WithTimestampsAndStringId { name: string; workflows: WorkflowEntity[]; workflowMappings: WorkflowTagMapping[]; }