n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 465 B
TypeScript
import type { ClusterInfoResponse } from '@n8n/api-types';
import { CheckService } from './checks/check.service';
import { InstanceRegistryService } from './instance-registry.service';
export declare class InstanceRegistryController {
private readonly instanceRegistryService;
private readonly checkService;
constructor(instanceRegistryService: InstanceRegistryService, checkService: CheckService);
getClusterInfo(): Promise<ClusterInfoResponse>;
}