UNPKG

express-gateway-service-registry

Version:

With self-registration, each microservice is responsible for adding itself to the gateway when it comes online.

11 lines (10 loc) 392 B
import { BindingKey } from '@loopback/core'; import { GatewayServiceRegistryComponent } from './component'; import { Config } from './types'; /** * Binding keys used by this component. */ export declare namespace GatewayServiceRegistryComponentBindings { const COMPONENT: BindingKey<GatewayServiceRegistryComponent>; const CONFIG: import("@loopback/core").BindingAddress<Config>; }