UNPKG

@skyairline-test/lib-config-server

Version:

Library for management of microservices configuration in digital architecture

14 lines (13 loc) 254 B
export interface ResponseGetProperties { name: string; profiles: string[]; version: string; propertySources: PropertySource[]; label?: any; state?: any; } interface PropertySource { name: string; source: any; } export {};