UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 527 B
import { OrchestrationRequest } from '../requests'; import { OrchestrationService } from '../services/orchestration.service'; import { License } from '../License'; export declare class OrchestrationController { private readonly orchestrationService; private readonly licenseService; constructor(orchestrationService: OrchestrationService, licenseService: License); getWorkersStatus(req: OrchestrationRequest.Get): Promise<void>; getWorkersStatusAll(): Promise<void>; getWorkerIdsAll(): Promise<void>; }