export interface ThemeConfigResult { theme: string; } export interface IScreenThemeItem { id: string; createdAt: string; projectId: string; type: string; code: string; 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; }