UNPKG
@skyairline-test/lib-config-server
Version:
latest (1.0.4-SNAPSHOT)
1.0.4-SNAPSHOT
1.0.3-SNAPSHOT
Library for management of microservices configuration in digital architecture
@skyairline-test/lib-config-server
/
dist
/
main
/
dto
/
response-get-properties.dto.d.ts
14 lines
(13 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
interface
ResponseGetProperties
{
name
:
string
;
profiles
:
string
[];
version
:
string
;
propertySources
:
PropertySource
[];
label
?:
any
;
state
?:
any
; }
interface
PropertySource
{
name
:
string
;
source
:
any
; }
export
{};