/** * 简化 Feature 处理器 - 根据配置自动处理安装和卸载 */ import type { FeatureModule } from "../types/index.js"; import type { SimpleFeatureConfig } from "../types/feature-config.js"; /** * 将简化配置转换为完整的 Feature 模块 */ export declare function createFeatureFromConfig(config: SimpleFeatureConfig): FeatureModule; //# sourceMappingURL=simple-feature-handler.d.ts.map