mirror of
https://github.com/nocobase/nocobase
synced 2024-11-17 06:26:29 +00:00
20 lines
337 B
TypeScript
20 lines
337 B
TypeScript
|
import { InstallOptions, Plugin } from '@nocobase/server';
|
||
|
|
||
|
export class PluginActionBulkEditServer extends Plugin {
|
||
|
afterAdd() {}
|
||
|
|
||
|
beforeLoad() {}
|
||
|
|
||
|
async load() {}
|
||
|
|
||
|
async install(options?: InstallOptions) {}
|
||
|
|
||
|
async afterEnable() {}
|
||
|
|
||
|
async afterDisable() {}
|
||
|
|
||
|
async remove() {}
|
||
|
}
|
||
|
|
||
|
export default PluginActionBulkEditServer;
|