export interface IThemePropertie { /** 配置属性名称 */ key: string; /** 属性值 */ value: string; /** 配置属性备注 */ remark?: string; } export interface IFullTheme { [key: string]: IThemePropertie[]; }