n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 346 B
TypeScript
import type { WorkflowEntity } from './WorkflowEntity';
import type { WorkflowTagMapping } from './WorkflowTagMapping';
import { WithTimestampsAndStringId } from './AbstractEntity';
export declare class TagEntity extends WithTimestampsAndStringId {
name: string;
workflows: WorkflowEntity[];
workflowMappings: WorkflowTagMapping[];
}