/** * Agent-aware Server 包入口 * 基于 SPEC-SRV-006: Package Entry Architecture * * 此文件只导出公共 API,不执行任何代码(无副作用) * 服务器启动入口请使用 cli.ts */ export { createHttpApi } from './httpApi'; export { BehaviorStore } from './store/behaviorStore'; export { ErrorStore } from './store/errorStore'; export { BehaviorDetector } from './detector/behaviorDetector'; export { AlertDetector } from './detector/alertDetector'; export type { Behavior, Summary, Hotspot, ErrorRecord, ErrorSummary } from './types'; //# sourceMappingURL=index.d.ts.map