import type { EchartWidgetData, EchartWidgetState } from '../echart' import type { EchartWidgetOptionProps, EchartWidgetProps, } from '../echart/types' import type { ConfigProps } from '../loader' export type BarWidgetData = EchartWidgetData export type BarWidgetState = EchartWidgetState export type BarWidgetConfig = EchartWidgetProps & { type: 'bar' } export type BarConfig = ConfigProps & EchartWidgetOptionProps