export interface ThemeConfigResult { theme: string } // 大屏主题项 export interface IScreenThemeItem { id: string; // 唯一ID createdAt: string; // 创建时间 projectId: string; // 项目ID type: string; // 类型 code: string; // 主题code name: string; // 主题名称 } // 宽屏自定义组件------------------------- export interface ICustomizeComponent { chartType: string; createdAt: number; id: string; projectId: string; staticData: IStaticData[]; tag: string; title: string; unit: string; updatedAt: number; } export interface IStaticData { name: string; value: string | number; }