chore: add types

This commit is contained in:
Jesús Pérez Lorenzo 2021-10-19 21:44:06 +01:00
parent 59d4d7d099
commit f50a02666e
2 changed files with 47 additions and 7 deletions

View File

@ -1,13 +1,21 @@
export const enum LanguageType {
en = 'en',
es = 'es',
None = 'None',
}
export interface StatusItemType {
[key: string]: any
title: string
text: string
content: string
lang: LanguageType
datetime: string
isOpen: boolean
}
export interface StatusItemDataType {
[key: string]: any
title: string
text: string
content: string
lang: LanguageType
datetime: string
}
export const enum ReqType {
tcp = 'tcp',
@ -49,8 +57,30 @@ export interface CloudGroupServcType {
appsrvcs: SrvcInfoElemType[]
}
export interface ResCloudDataCheck {
group_cloud: CloudGroupSrvcType
group_apps: CloudGroupSrvcType
statusentries: StatusItemDataType[]
export interface CloudDataCheck {
[key: string]: any
name: string
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
}

View File

@ -11,3 +11,13 @@ export interface MenuItemType {
active: boolean
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',
}