@project-sunbird/ext-framework-server
Version:
Extensible framework for sunbird extensions on server side
23 lines (22 loc) • 456 B
TypeScript
import { Manifest } from "./Manifest";
/**
* @author Sunil A S <sunils@ilimi.in>
*/
/**
*
*
* @export
* @interface IPluginLifeCycleEvents
*/
export interface IPluginLifeCycleEvents {
onLoad?(): any;
onUnload?(): any;
onStart?(): any;
onStop?(): any;
}
export declare class BaseServer {
protected cassandra: any;
protected elasticsearch: any;
protected manifest: Manifest;
protected constructor(manifest: Manifest);
}