fix: 修复option类型错误问题

This commit is contained in:
奔跑的面条 2022-04-06 10:42:11 +08:00
parent 4aa303b51f
commit cc0ecedd4e
2 changed files with 2 additions and 2 deletions

View File

@ -77,6 +77,5 @@
"textStyle": { "textStyle": {
"color": "#B9B8CE" "color": "#B9B8CE"
} }
}, }
"dataset": null
} }

View File

@ -85,6 +85,7 @@ export const chartColorsSearch = {
// 默认主题详细配置 // 默认主题详细配置
type ThemeJsonType = typeof themeJson type ThemeJsonType = typeof themeJson
export interface GlobalThemeJsonType extends Partial<ThemeJsonType> { export interface GlobalThemeJsonType extends Partial<ThemeJsonType> {
dataset: any,
[T:string]: any [T:string]: any
} }
export const globalThemeJson = themeJson export const globalThemeJson = themeJson