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