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