diff --git a/src/typs/clouds/index.ts b/src/typs/clouds/index.ts index 8db77a0..270d865 100644 --- a/src/typs/clouds/index.ts +++ b/src/typs/clouds/index.ts @@ -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> + cloud: Map> + 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 +} \ No newline at end of file diff --git a/src/typs/index.ts b/src/typs/index.ts index d4eadde..bd872a6 100644 --- a/src/typs/index.ts +++ b/src/typs/index.ts @@ -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', +} \ No newline at end of file