UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

10 lines (9 loc) 304 B
import type { ISeries } from '../../series/interface'; export interface ISeriesPlugin { afterSeriesDataInit?: (series: ISeries) => void; afterSeriesMarkInit?: (series: ISeries) => void; } export interface ISeriesPluginConstructor { readonly type: 'seriesPlugin'; new (): ISeriesPlugin; }