import type { ICartesianChartSpec } from '../cartesian/interface'; import type { ILineSeriesSpec } from '../../series/line/interface'; import type { IChartExtendsSeriesSpec } from '../../typings'; export interface ILineChartSpec extends ICartesianChartSpec, IChartExtendsSeriesSpec { type: 'line'; series?: ILineSeriesSpec[]; }