import type { EchartWidgetData, EchartWidgetState } from '../echart' import type { EchartWidgetOptionProps, EchartWidgetProps, } from '../echart/types' import type { ConfigProps } from '../loader' export type TimeseriesWidgetData = EchartWidgetData export type TimeseriesWidgetState = EchartWidgetState export type TimeseriesWidgetConfig = EchartWidgetProps & { type: 'timeseries' } export type TimeseriesConfig = ConfigProps & EchartWidgetOptionProps