UNPKG

n8n

Version:

n8n Workflow Automation Tool

8 lines (7 loc) 344 B
import { WorkflowRepository } from '@n8n/db'; import { type IWorkflowBase, type IWorkflowLoader } from 'n8n-workflow'; export declare class WorkflowLoaderService implements IWorkflowLoader { private readonly workflowRepository; constructor(workflowRepository: WorkflowRepository); get(workflowId: string): Promise<IWorkflowBase>; }