UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

5 lines (4 loc) 300 B
import type { IChartPlugin, IChartPluginConstructor } from './chart/interface'; import type { ISeriesPlugin, ISeriesPluginConstructor } from './series/interface'; export type IPlugin = IChartPlugin | ISeriesPlugin; export type IPluginConstructor = IChartPluginConstructor | ISeriesPluginConstructor;