chore: add types
This commit is contained in:
parent
59d4d7d099
commit
f50a02666e
@ -1,13 +1,21 @@
|
|||||||
|
export const enum LanguageType {
|
||||||
|
en = 'en',
|
||||||
|
es = 'es',
|
||||||
|
None = 'None',
|
||||||
|
}
|
||||||
export interface StatusItemType {
|
export interface StatusItemType {
|
||||||
[key: string]: any
|
|
||||||
title: string
|
title: string
|
||||||
text: string
|
content: string
|
||||||
|
lang: LanguageType
|
||||||
|
datetime: string
|
||||||
isOpen: boolean
|
isOpen: boolean
|
||||||
}
|
}
|
||||||
export interface StatusItemDataType {
|
export interface StatusItemDataType {
|
||||||
[key: string]: any
|
[key: string]: any
|
||||||
title: string
|
title: string
|
||||||
text: string
|
content: string
|
||||||
|
lang: LanguageType
|
||||||
|
datetime: string
|
||||||
}
|
}
|
||||||
export const enum ReqType {
|
export const enum ReqType {
|
||||||
tcp = 'tcp',
|
tcp = 'tcp',
|
||||||
@ -49,8 +57,30 @@ export interface CloudGroupServcType {
|
|||||||
appsrvcs: SrvcInfoElemType[]
|
appsrvcs: SrvcInfoElemType[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ResCloudDataCheck {
|
export interface CloudDataCheck {
|
||||||
group_cloud: CloudGroupSrvcType
|
[key: string]: any
|
||||||
group_apps: CloudGroupSrvcType
|
name: string
|
||||||
statusentries: StatusItemDataType[]
|
apps: Map<string, Map<string, CloudGroupServcType>>
|
||||||
|
cloud: Map<string, Map<string, CloudGroupServcType>>
|
||||||
|
infos: StatusItemType[]
|
||||||
}
|
}
|
||||||
|
export interface CloudOptionType {
|
||||||
|
name: string
|
||||||
|
option: number
|
||||||
|
}
|
||||||
|
export interface CloudGroupDataType {
|
||||||
|
[key: string]: CloudGroupItemType[] | any
|
||||||
|
}
|
||||||
|
export interface ResCloudDataCheck {
|
||||||
|
[key: string]: any
|
||||||
|
name: string
|
||||||
|
cloud: CloudGroupDataType
|
||||||
|
apps: CloudGroupDataType
|
||||||
|
// cloud: CloudGroupSrvcType
|
||||||
|
// statusentries: StatusItemDataType[]
|
||||||
|
}
|
||||||
|
export interface ResCloudDataCheckDefs {
|
||||||
|
[key: string]: any
|
||||||
|
check: ResCloudDataCheck[]
|
||||||
|
defs: any
|
||||||
|
}
|
@ -11,3 +11,13 @@ export interface MenuItemType {
|
|||||||
active: boolean
|
active: boolean
|
||||||
link: string
|
link: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum NavItemType {
|
||||||
|
router_link = 'router_link',
|
||||||
|
app_link = 'app_link',
|
||||||
|
a_blank = 'a_blank',
|
||||||
|
a_link = 'a_link',
|
||||||
|
cloud_link = 'cloud_link',
|
||||||
|
module_label = 'module_label',
|
||||||
|
separator = 'separator',
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user