import type { ISankeySeriesSpec } from '../../series/sankey/interface'; import type { IChartExtendsSeriesSpec, IChartSpec } from '../../typings/spec/common'; export interface ISankeyChartSpec extends Omit, IChartExtendsSeriesSpec { type: 'sankey'; series?: ISankeySeriesSpec[]; }