export interface ServicesConfig { services: Record; } export interface Service { repository: string; openapi_spec: string; service_owner: string; routes: string[]; hosts: { localhost: LocalhostConfig; }; } export interface LocalhostConfig { host: string; port: number; timeout: string; health_check_path: string; } //# sourceMappingURL=types.d.ts.map