mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-04-19 01:48:42 +00:00
13 lines
201 B
TypeScript
13 lines
201 B
TypeScript
|
/**
|
||
|
* @Author: Gongxh
|
||
|
* @Date: 2024-12-07
|
||
|
* @Description: 模块接口
|
||
|
*/
|
||
|
|
||
|
export interface IModule {
|
||
|
/** 模块名称 */
|
||
|
moduleName: string;
|
||
|
|
||
|
/** 模块初始化 */
|
||
|
init(): void;
|
||
|
}
|