import type { IChartExtendsSeriesSpec, IChartSpec } from '../../typings/spec/common'; import type { IMapSeriesSpec } from '../../series/map/interface'; export interface IMapChartSpec extends IChartSpec, IChartExtendsSeriesSpec { type: 'map'; series?: IMapSeriesSpec[]; }