n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 403 B
TypeScript
import { WithTimestamps } from './AbstractEntity';
import { IConnections } from 'n8n-workflow';
import type { INode } from 'n8n-workflow';
import { WorkflowEntity } from './WorkflowEntity';
export declare class WorkflowHistory extends WithTimestamps {
versionId: string;
workflowId: string;
nodes: INode[];
connections: IConnections;
authors: string;
workflow: WorkflowEntity;
}