| 1 | // ABOUTME: 共享类型定义 |
| 2 | export interface BaseModuleConfig { |
| 3 | name: string; |
| 4 | version: string; |
| 5 | enabled: boolean; |
| 6 | } |
| 7 | |
| 8 | export interface ModuleFrontendConfig extends BaseModuleConfig { |
| 9 | routes?: import('../utils/routeUtil').RouteTree; |
nothing calls this directly
no outgoing calls
no test coverage detected