UNPKG

@codervisor/devlog-cli

Version:

Command-line interface for devlog - Extract and stream chat history to devlog server

14 lines 650 B
/** * Display utilities for CLI output * * Provides consistent formatting and styling for CLI messages */ export declare function displayError(context: string, error: unknown): void; export declare function displaySuccess(message: string): void; export declare function displayWarning(message: string): void; export declare function displayInfo(message: string): void; export declare function displayHeader(title: string): void; export declare function formatCount(count: number): string; export declare function formatBytes(bytes: number): string; export declare function formatDuration(ms: number): string; //# sourceMappingURL=display.d.ts.map