UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 305 B
import { WithTimestamps } from '@n8n/db'; import { type Relation } from '@n8n/typeorm'; import { Agent } from './agent.entity'; export declare class AgentTaskRunLock extends WithTimestamps { agentId: string; agent: Relation<Agent>; taskId: string; holderId: string; heldUntil: Date; }