n8n
Version:
n8n Workflow Automation Tool
16 lines (15 loc) • 436 B
TypeScript
import { WorkflowExecuteMode } from 'n8n-workflow';
import { IExecutionFlattedDb, IWorkflowDb } from '../..';
export declare class ExecutionEntity implements IExecutionFlattedDb {
id: number;
data: string;
finished: boolean;
mode: WorkflowExecuteMode;
retryOf: string;
retrySuccessId: string;
startedAt: Date;
stoppedAt: Date;
workflowData: IWorkflowDb;
workflowId: string;
waitTill: Date;
}