index.d.ts 425 B

123456789101112131415
  1. import { Adaptor } from '../../core/adaptor';
  2. import { Plot } from '../../core/plot';
  3. import { TemplateOptions } from './types';
  4. export type { TemplateOptions };
  5. /**
  6. * 这个是一个图表开发的 模板代码!
  7. */
  8. export declare class Template extends Plot<TemplateOptions> {
  9. /** 图表类型 */
  10. type: string;
  11. /**
  12. * 获取适配器
  13. */
  14. protected getSchemaAdaptor(): Adaptor<TemplateOptions>;
  15. }