tachybase_todo/packages/samples/custom-page/src/server/index.ts
chenos 883f1e6fd1
fix: eslint (#1759)
* fix: eslint

* fix: eslint --fix

* fix: changelog
2023-04-25 13:12:14 +08:00

16 lines
257 B
TypeScript

import { InstallOptions, Plugin } from '@nocobase/server';
export class CustomPagePlugin extends Plugin {
afterAdd() {}
beforeLoad() {}
async load() {}
async install(options: InstallOptions) {
// TODO
}
}
export default CustomPagePlugin;