export declare enum HealthStatus { /** 正常 */ Healthy = "Healthy", /** 警告 */ Warning = "Warning", /** 延期 */ Delay = "Delay", /** 失效 */ Failure = "Failure" } interface CodeItemList { apicode: T; children: CodeItemList[]; description: string; icon: string; id: string; name: string; pid: null; readonly: boolean; sort: number; status: boolean; code?: string; value?: string; label?: string; [k: string]: any; } export interface HealthStatusObject extends CodeItemList { apicode: HealthStatus; } export {};