UNPKG

ai-debug-local-mcp

Version:

🎯 ENHANCED AI GUIDANCE v4.1.2: Dramatically improved tool descriptions help AI users choose the right tools instead of 'close enough' options. Ultra-fast keyboard automation (10x speed), universal recording, multi-ecosystem debugging support, and compreh

19 lines • 826 B
/** * Formatting utilities for Next.js performance handler */ export declare function formatBundleSize(bytes: number): string; export declare function formatKilobytes(bytes: number): string; export declare function getRouteSizeIndicator(sizeKB: number): string; export declare function formatFirstLoadRoutes(routes: [string, number][]): string; export declare function formatChunkBreakdown(chunks: Array<{ name: string; size: number; }>): string; export declare function formatModuleList(modules: Array<{ name: string; size: number; }>): string; export declare function formatNoBundlesMessage(): string; export declare function formatRecommendations(recommendations: string[]): string; export declare function formatSummaryPoints(summary: string): string; //# sourceMappingURL=performance-formatters.d.ts.map