mirror of
https://gitee.com/dromara/go-view.git
synced 2026-05-12 00:00:01 +08:00
fix: 修改图表类型错误
This commit is contained in:
Vendored
+1
-2
@@ -9,7 +9,6 @@ export type ConfigType = {
|
||||
package: string
|
||||
node: Component
|
||||
image: string | (() => Promise<typeof import('*.png')>)
|
||||
[T: string]: unknown
|
||||
}
|
||||
|
||||
// 组件实例类
|
||||
@@ -21,7 +20,7 @@ export interface PublicConfigType {
|
||||
}
|
||||
export interface CreateComponentType extends PublicConfigType {
|
||||
key: string
|
||||
chartData: ConfigType
|
||||
chartData: Omit<ConfigType, 'node'>
|
||||
option: object
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user