多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
399 B

import XcPluginHooks from './XcPluginHooks';
abstract class XcPlugin extends XcPluginHooks {
protected readonly app: any;
public readonly config: any;
constructor(app: any, config: any) {
super();
this.app = app;
this.config = config;
}
abstract init(config: any): Promise<any>;
// public getHooks(): XcPluginHooks{
// return null;
// }
}
export default XcPlugin;