UNPKG

qnce-engine

Version:

Core QNCE (Quantum Narrative Convergence Engine) - Framework agnostic narrative engine with performance optimization

30 lines 916 B
#!/usr/bin/env node /** * S2-T5: CLI Performance Dashboard * QNCE Performance Monitor CLI Tool - Real-time profiler metrics and threshold alerts */ interface PerformanceThresholds { maxCacheHitTime: number; minCacheHitRate: number; maxHotReloadTime: number; maxStateTransitionTime: number; maxEventBacklog: number; } /** * Display comprehensive performance dashboard */ declare function displayDashboard(thresholds?: PerformanceThresholds): void; /** * Live monitor mode - continuously update performance metrics */ declare function startLiveMonitor(intervalMs?: number, thresholds?: PerformanceThresholds): void; /** * Export performance summary as JSON */ declare function exportSummary(): void; /** * Reset performance counters */ declare function resetCounters(): void; export { displayDashboard, startLiveMonitor, exportSummary, resetCounters }; //# sourceMappingURL=perf.d.ts.map