n8n
Version:
n8n Workflow Automation Tool
11 lines (10 loc) • 452 B
TypeScript
import { WithTimestampsAndStringId } from './abstract-entity';
import type { FolderTagMapping } from './folder-tag-mapping';
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[];
folderMappings: FolderTagMapping[];
}