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