UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 266 B
import { WithTimestamps } from '@n8n/db'; import { Agent } from './agent.entity'; export declare class AgentCheckpoint extends WithTimestamps { runId: string; agent: Agent | null; agentId: string | null; state: string | null; expired: boolean; }