UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

12 lines (11 loc) 500 B
import type { InstanceRegistration } from '@n8n/api-types'; export interface InstanceRegistryProvider { getAllInstances(): Promise<InstanceRegistration[]>; getLocalInstance(): InstanceRegistration | null; } export declare class InstanceRegistryProxyService implements InstanceRegistryProvider { private provider; registerProvider(provider: InstanceRegistryProvider): void; getAllInstances(): Promise<InstanceRegistration[]>; getLocalInstance(): InstanceRegistration | null; }