import { EchartWidgetData, EchartWidgetState } from '../echart'; import { EchartWidgetOptionProps, EchartWidgetProps } from '../echart/types'; import { ConfigProps } from '../loader'; export type PieWidgetData = EchartWidgetData; export type PieWidgetState = EchartWidgetState; export type PieWidgetConfig = EchartWidgetProps & { type: 'pie'; }; export type PieConfig = ConfigProps & EchartWidgetOptionProps;