UNPKG

echarts

Version:

Apache ECharts is a powerful, interactive charting and data visualization library for browser

9 lines (8 loc) 481 B
import GlobalModel from './Global.js'; import { ComponentOption, ComponentMainType } from '../util/types.js'; interface InternalOptionCreator { (ecModel: GlobalModel): ComponentOption[]; } export declare function registerInternalOptionCreator(mainType: ComponentMainType, creator: InternalOptionCreator): void; export declare function concatInternalOptions(ecModel: GlobalModel, mainType: ComponentMainType, newCmptOptionList: ComponentOption[]): ComponentOption[]; export {};