n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 327 B
TypeScript
import { License } from '../license';
import { Publisher } from '../scaling/pubsub/publisher.service';
export declare class OrchestrationController {
private readonly licenseService;
private readonly publisher;
constructor(licenseService: License, publisher: Publisher);
getWorkersStatusAll(): Promise<void>;
}