{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/plots/_template/index.ts"],"names":[],"mappings":";;;;AACA,wCAAuC;AACvC,qCAAoC;AAKpC;;GAEG;AACH;IAA8B,oCAAqB;IAAnD;QAAA,qEAUC;QATC,WAAW;QACJ,UAAI,GAAW,UAAU,CAAC;;IAQnC,CAAC;IANC;;OAEG;IACO,mCAAgB,GAA1B;QACE,OAAO,iBAAO,CAAC;IACjB,CAAC;IACH,eAAC;AAAD,CAAC,AAVD,CAA8B,WAAI,GAUjC;AAVY,4BAAQ","sourcesContent":["import { Adaptor } from '../../core/adaptor';\nimport { Plot } from '../../core/plot';\nimport { adaptor } from './adaptor';\nimport { TemplateOptions } from './types';\n\nexport type { TemplateOptions };\n\n/**\n * 这个是一个图表开发的 模板代码!\n */\nexport class Template extends Plot {\n /** 图表类型 */\n public type: string = 'template';\n\n /**\n * 获取适配器\n */\n protected getSchemaAdaptor(): Adaptor {\n return adaptor;\n }\n}\n"]}