autosnippet
Version:
Extract code patterns into a knowledge base for AI coding assistants
19 lines (18 loc) • 430 B
TypeScript
/**
* PanoramaModule — DI 注册
*
* 注册全景服务到 ServiceContainer:
* - moduleDiscoverer
* - roleRefiner
* - couplingAnalyzer
* - layerInferrer
* - panoramaAggregator
* - panoramaScanner
* - panoramaService
*
* @module PanoramaModule
*/
import type { ServiceContainer } from '../ServiceContainer.js';
export declare const PanoramaModule: {
register(container: ServiceContainer): void;
};