askeroo
Version:
A modern CLI prompt library with flow control, history navigation, and conditional prompts
23 lines • 614 B
TypeScript
/**
* Utility functions for logging and debugging
*/
/**
* Utility function for consistent result logging across examples
*/
export declare const logResult: (result: any, label?: string) => void;
/**
* Simple debug logger for development
* Enable with --debug flag
*/
declare class DebugLogger {
private isEnabled;
private startTime;
constructor();
log(event: string, data?: any): void;
isDebugEnabled(): boolean;
cleanup(): void;
}
export declare function getDebugLogger(): DebugLogger;
export declare const debugLogger: DebugLogger;
export {};
//# sourceMappingURL=logging.d.ts.map