@antv/g2plot
Version: 
An interactive and responsive charting library
16 lines (15 loc) • 425 B
TypeScript
import { Adaptor } from '../../core/adaptor';
import { Plot } from '../../core/plot';
import { TemplateOptions } from './types';
export type { TemplateOptions };
/**
 * 这个是一个图表开发的 模板代码!
 */
export declare class Template extends Plot<TemplateOptions> {
    /** 图表类型 */
    type: string;
    /**
     * 获取适配器
     */
    protected getSchemaAdaptor(): Adaptor<TemplateOptions>;
}