UNPKG

@sethdouglasford/claude-flow

Version:

Claude Code Flow - Advanced AI-powered development workflows with SPARC methodology

15 lines 815 B
/** * Utility functions for formatting data display */ export declare function formatDuration(ms: number): string; export declare function formatBytes(bytes: number): string; export declare function formatPercentage(value: number, decimals?: number): string; export declare function formatNumber(num: number): string; export declare function formatRelativeTime(date: Date): string; export declare function formatUptime(startTime: Date): string; export declare function formatRate(rate: number): string; export declare function truncate(str: string, length: number): string; export declare function formatStatus(status: string): string; export declare function formatHealth(health: number): string; export declare function formatMetric(value: number, unit: string): string; //# sourceMappingURL=formatters.d.ts.map