/** * @author HymanZhan * @createDate 2022/12/29 * @description EasyThemeConfig TS types */ interface configType { [key: string]: string } export interface ThemeConfig{ theme: string // theme-name config: configType // theme values values?: any // other values }