import { EchartWidgetState } from '../echart'; import { EchartWidgetOptionProps, EchartWidgetProps } from '../echart/types'; import { ConfigProps } from '../loader'; export type ScatterplotWidgetData = [number, number][][]; export type ScatterplotWidgetState = EchartWidgetState; export type ScatterplotWidgetConfig = EchartWidgetProps & { type: 'scatterplot'; }; export type ScatterplotConfig = ConfigProps & EchartWidgetOptionProps;