16 lines
257 B
TypeScript
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;
|