tachybase_todo/packages/plugins/@nocobase/plugin-sample-add-custom-charts/src/server/plugin.ts
YANG QIA 8bd6ef897c
chore(bi): complete chart api (#2771)
* chore(bi): complete chart api

* feat(bi): sample plugin for adding custom charts

* chore: improve

* chore: remove console.log
2023-10-11 04:24:50 -05:00

20 lines
349 B
TypeScript

import { InstallOptions, Plugin } from '@nocobase/server';
export class PluginSampleAddCustomChartServer extends Plugin {
afterAdd() {}
beforeLoad() {}
async load() {}
async install(options?: InstallOptions) {}
async afterEnable() {}
async afterDisable() {}
async remove() {}
}
export default PluginSampleAddCustomChartServer;