UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

10 lines (9 loc) 445 B
import type { AuthenticatedRequest } from '@n8n/db'; import { License } from '../license'; import { WorkerStatusService } from '../scaling/worker-status.service.ee'; export declare class OrchestrationController { private readonly licenseService; private readonly workerStatusService; constructor(licenseService: License, workerStatusService: WorkerStatusService); getWorkersStatusAll(req: AuthenticatedRequest): Promise<void>; }