lin-cms-test
Version:
The core library of Lin CMS, this package is just for test!
23 lines (22 loc) • 482 B
TypeScript
/**
* 插件类,一个插件包含自己的业务 (redprint),自己的模型 (model)
* 自己的校验层,视图层
*/
export declare class Plugin {
name: string;
models: {};
controllers: {};
constructor(name: string);
/**
* addModel
*/
addModel(name: string, model: any): void;
/**
* getModel
*/
getModel(name: string): any;
/**
* addController
*/
addController(name: string, controller: any): void;
}