UNPKG

ordojs

Version:

A revolutionary web framework with compile-time optimizations and unified client-server development

29 lines 584 B
/** * @fileoverview OrdoJS CLI - Logger utility */ /** * Logger utility for CLI output */ export declare const logger: { /** * Log an informational message */ info(message: string): void; /** * Log a success message */ success(message: string): void; /** * Log a warning message */ warn(message: string): void; /** * Log an error message */ error(message: string): void; /** * Log a debug message (only in debug mode) */ debug(message: string): void; }; //# sourceMappingURL=logger.d.ts.map