UNPKG

@antv/g2plot

Version:

An interactive and responsive charting library

18 lines (17 loc) 431 B
import { Params } from '../../core/adaptor'; import { GaugeOptions } from './types'; /** * 统计指标文档 * @param params */ declare function statistic(params: Params<GaugeOptions>, updated?: boolean): Params<GaugeOptions>; /** * 对外暴露的 adaptor */ export { statistic }; /** * 图适配器 * @param chart * @param options */ export declare function adaptor(params: Params<GaugeOptions>): Params<GaugeOptions>;